access_token

Query the authorization server for an access token used to access property resources.
If the automatic delivery method for API keys is used, the grant type urn:ietf:params:oauth:grant-type:api-key needs to be used to request an API key. This grant type requires grant_type=urn:ietf:params:oauth:grant-type:api-key, client_id, client_secret, redirect_uri and code.
For OAuth 2.0., two different grant types (authorization_code, refresh_token) are supported. Authorization code grant type requires grant_type=authorization_code, client_id, client_secret, redirect_uri, code. Refresh token grant type requires grant_type=refresh_token, client_id, client_secret, refresh_token.
Read the Authentication guide for implementation tips, user flows and testing advice.

Form Data
string | null
enum

The OAuth2 grant type.

Allowed:
string | null

The client identifier. Each client must be provisioned an identifier.

string | null

The client secret. Each client must be provisioned a secret.

string | null

The client pre-configured redirect URI. (Required for grant type 'authorization_code' and 'urn:ietf:params:oauth:grant-type:api-key').

string | null

An authorization code provisioned by /oauth (Required for grant type 'authorization_code' and 'urn:ietf:params:oauth:grant-type:api-key').

string | null

A refresh token to renew an access_token (Required for grant type 'refresh_token' only).

Response

Language
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json