Authentication
Authenticate using your client credentials to obtain an access token. The token expires after 30 minutes and must be included in the Authorization header for all subsequent API requests. The access token will be returned in the Authorization header.
Body
client_idstringRequiredExample:
Your client ID provided by Payscore
your-client-id-heresecret_keystringRequiredExample:
Your secret key provided by Payscore
your-secret-key-hereResponses
200
Authentication successful
401
Authentication failed - invalid client credentials
post
/api/v1/tenants/authPOST /api/v1/tenants/auth HTTP/1.1
Host: api.payscore.com
Content-Type: application/json
Accept: */*
Content-Length: 71
{
"client_id": "your-client-id-here",
"secret_key": "your-secret-key-here"
}No content
Last updated