Validate API Key


                https://api.ocamba.com/v2/ocamba/personal-api-keys/validate
            

Validates API Key.


Name
Description
Authorizationstringrequired
Provided Bearer and API Key in order to be Authorized.


Example: Bearer a2e9a25b9a4f57f3d307bebafb0ac9db

204 - No Content
Arrow

401 - Unauthorized
Arrow
Name
Description
codeinteger
Http response status code.


Example: 401

messagestring
The human readable message that describes how to deal with error.


Example: Unauthorized.

titlestring
The error title.


Example: Unauthorized.

trace_idstring
Error trace id.


Example: {}

500 - Internal Server Error
Arrow
Name
Description
codeinteger
Http response status code.


Example: 500

messagestring
The human readable message that describes how to deal with error.


Example: Internal server error.

titlestring
The error title.


Example: Internal server error.
tip
1 When executing the verify request, you must provide the api key as a bearer token in the authorization for the http request.
401 Arrow
{
  "code": 401,
  "title": "Unauthorized.",
  "message": "Unauthorized.",
  "trace_id": "{}"
}
{
  "code": 500,
  "title": "Internal server error.",
  "message": "Internal server error."
}