Resonance AdminIdentity Admin REST API (1.0.0)
Download OpenAPI specification:Download
Resonance AdminIdentity Admin API Routes that fall outside of GraphQL.
The double Admin is not a typo, signifying the Admin functionality for the AdminIdentity domain.
Create Token
Create a token for a given app client to perform App-related activities on behalf of app installations. This route is heavily rate-limited for security and should not be called frequently.
Request Body schema: application/json
AppClientId and AppSecret
appClientId required | string App Client Id |
appSecret required | string App Secret |
Responses
Request samples
- Payload
Content type
application/json
{- "appClientId": "appcl-1234",
- "appSecret": "34wegskgheaorht359ynklbnv"
}
Response samples
- 200
Content type
application/json
{- "AccessToken": "eydfkslnvn==",
- "ExpiresIn": 3600,
- "TokenType": "Bearer",
- "RefreshToken": "eydfkslnfdsgfdhdfahfdhgdnbvn=="
}