Skip to content
Download OpenAPI description
Languages
Servers
Sandbox

https://api.rollouts.sb3.plannotice.com/

Production

https://api.planrollouts.com/

Operations

Request

Retrieves a token using client credentials provided by Plan Notice.

Body
client_idstringnon-emptyrequired
client_secretstringnon-emptyrequired
curl -i -X POST \
  https://api.rollouts.sb3.plannotice.com/api/v1/OAuth/Token \
  -H 'Content-Type: application/json' \
  -d '{
    "client_id": "string",
    "client_secret": "string"
  }'

Responses

OK

Bodyapplication/json
access_tokenstring or null
expires_ininteger(int32)
token_typestring or null
Response
application/json
{ "access_token": "string", "expires_in": 0, "token_type": "string" }
Operations