Create an OAuth Token
post/oauth/tokens
Request body
Example request
{
"client_id": "12345",
"client_secret": "supersecret",
"code": "123",
"grant_type": "authorization_code"
}Response
OAuth Token
Example response
{
"access_token": "12345",
"group_id": "group_1g4mhziu6kvrs3vz35um",
"token_type": "bearer",
"type": "oauth_token"
}