Retrieves a token using client credentials provided by Plan Notice.
Plan Rollouts API (v1)
Download OpenAPI description
Languages
Servers
Sandbox
https://api.rollouts.sb3.plannotice.com/
Production
https://api.planrollouts.com/
- Sandbox
https://api.rollouts.sb3.plannotice.com/api/v1/OAuth/Token
- Production
https://api.planrollouts.com/api/v1/OAuth/Token
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
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"
}'Response
application/json
{ "access_token": "string", "expires_in": 0, "token_type": "string" }