List All Keys

You can retrieve a list of all API keys (both active and deleted) linked to your account by making a GET request to the API key list endpoint.

GET https://api.olisystems.com/user/api-key

Headers

Name
Value

Authorization*

Bearer <token>

Example Response

  {
  "code": 200,
  "data": [
  {
      "apiKey": "**********aBVUu1tg-T",
      "apiKeyId": "d1e13388-c3c8-4bd4-8361-4b698829cde6",
      "dateCreated": "Thu, 21 Nov 2024 22:44:16 GMT",
      "expiry": "Thu, 21 Nov 2024 23:43:43 GMT",
      "name": "Test Key",
      "status": "ACTIVE"
    }
  ],
  "message": "User's API_KEY information",
  "status": "success"
}

Last updated