Follow these steps to gain access to Prove APIs
Access your Developer Portal account
Navigate to the Prove solution
Create a project
View Credentials
Test Your Credentials Using cURL
curl -X POST https://platform.uat.proveapis.com/token \ -H "Content-Type: application/x-www-form-urlencoded" \ -d "grant_type=client_credentials&client_id=YOUR_CLIENT_ID&client_secret=YOUR_CLIENT_SECRET"
{ "access_token": "eyJ...", "refresh_token": "eyJ...", "refresh_expires_in": 3600, "token_type": "Bearer", "expires_in": 3600 }
Authenticate a Request
curl -X POST https://platform.uat.proveapis.com/v3/start \ -H 'Authorization: Bearer YOUR_BEARER_TOKEN' \ -H 'Content-Type: application/json' \ -d "phoneNumber=2001001695&flowType=mobile"