Authentication

You need to be an Apizee authenticated user to use the APIs:

  1. Get your account on the Apizee plaform depending on what endpoint you need.

  2. Use the /token endpoint providing your username and password to get a token in return (see Bearer Authentication).

  3. Include the token in the Authorization header of requests:

    Authorization: Bearer <token>

Returns access token

post
/api/v3/token
Query parameters
grant_typestring · enumRequired

Grant type to get access token

Default: passwordPossible values:
usernamestringOptional

Username used to login, required if grant_type is password

passwordstringOptional

Password used to login, required if grant_type is password

assertionstringOptional

JWT assertion to get access token, required if grant_type is urn:ietf:params:oauth:grant-type:jwt-bearer

Responses
200

Good case

application/json
post
/api/v3/token

Revoke user access token

post
/api/v3/token/revoke
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

Good case

application/json
post
/api/v3/token/revoke
200

Good case

Last updated