Authentication

Authenticate and obtain access token

post
/api/v1/tenants/auth

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_idstringRequired

Your client ID provided by Payscore

Example: your-client-id-here
secret_keystringRequired

Your secret key provided by Payscore

Example: your-secret-key-here
Responses
200

Authentication successful

post
/api/v1/tenants/auth
POST /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