OAuth 2.0 related endpoints
Get OAuth2 Token
POST
https://api.neighborlysoftware.com
/oauth/token
Retrieves an OAuth2 token using the client credentials grant type.
The grant_type must be set to client_credentials.
The client_id and client_secret are required.
Request body must be sent with Content-Type application/x-www-form-urlencoded.
Request Body
grant_typestring · enum · requiredEnum values:client_credentialsclient_idstring · requiredclient_secretstring · required
Responses
OAuth2 Token
access_tokenstringThe access token
Example: access-tokentoken_typestringThe type of token
Example: Bearerexpires_inintegerThe time in milliseconds until the token expires
Example: 3600
