API References
Request OAuth Token
Prove Pre-Fill®
- Prove Pre-Fill Overview
- Implementation Guide
- Sandbox Testing
- Server-Side SDK Guide
- Client-Side Web SDK
- Client-Side Android SDK
- Client-Side iOS SDK
- API References
- Without Mobile Auth CX Requirements
- With Mobile Auth CX Requirements
Prove Identity®
Prove Verified Users
Prove Unify
Stay Informed
Request OAuth Token
This endpoint allows you to request an OAuth token.
POST
/
token
curl --request POST \
--url https://platform.uat.proveapis.com/token \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data client_id=customer_id \
--data client_secret=secret \
--data grant_type=client_credentials
{
"access_token": "eyJ...",
"refresh_token": "eyJ...",
"refresh_expires_in": 3600,
"token_type": "Bearer",
"expires_in": 3600
}
Body
application/x-www-form-urlencoded
Response
200
application/json
Successful request.
The response is of type object
.
curl --request POST \
--url https://platform.uat.proveapis.com/token \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data client_id=customer_id \
--data client_secret=secret \
--data grant_type=client_credentials
{
"access_token": "eyJ...",
"refresh_token": "eyJ...",
"refresh_expires_in": 3600,
"token_type": "Bearer",
"expires_in": 3600
}