C#
Request OAuth Token
This endpoint allows you to request an OAuth token.
POST
C#
Documentation Index
Fetch the complete documentation index at: https://developer.prove.com/llms.txt
Use this file to discover all available pages before exploring further.
Body
application/x-www-form-urlencoded
The client ID retrieved from the Developer Portal.
Example:
"customer_id"
The client secret retrieved from the Developer Portal.
Example:
"secret"
The grant type. This field only accepts client_credentials.
Example:
"client_credentials"
Response
Successful request.
The access token used to authenticate API calls.
Example:
"eyJ..."
The lifetime of the token in seconds.
Example:
3600
The type of token.
Example:
"Bearer"
The lifetime of the refresh token in seconds. Not currently supported.
Example:
3600
The token used to refresh the expiration time. Not currently supported.
Example:
"eyJ..."

