Skip to main content
GET
/
v1
/
partner
/
credentials
List API credentials
curl --request GET \
  --url https://sandbox.api.acountpay.com/v1/partner/credentials \
  --header 'X-Partner-Client-Id: <api-key>' \
  --header 'X-Partner-Client-Secret: <api-key>'
[
  {
    "id": 1,
    "name": "Production API Key",
    "clientId": "partner_abc123",
    "clientSecretLast4": "...xz9f",
    "status": "active",
    "createdAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

X-Partner-Client-Id
string
header
required

Your partner client ID

X-Partner-Client-Secret
string
header
required

Your partner client secret

Response

List of credentials

id
number
Example:

1

name
string
Example:

"Production API Key"

clientId
string
Example:

"partner_abc123"

clientSecretLast4
string
Example:

"...xz9f"

status
enum<string>
Available options:
active,
revoked
Example:

"active"

createdAt
string<date-time>