Skip to main content
POST
/
cards
/
{cardIdentifier}
/
reprintPIN
Request PIN reprint
curl --request POST \
  --url https://apigwuat.corpay.com/cards/{cardIdentifier}/reprintPIN \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "cardAddress": {
    "addressLines": "Unit 10, Industrial Estate Oxford Road",
    "zipCode": "OX1 3PA",
    "city": "Oxford",
    "region": "Oxfordshire",
    "country": "United Kingdom",
    "countryCode": "GB"
  }
}
'
{
  "$ref": "#/components/schemas/Status/example"
}

Documentation Index

Fetch the complete documentation index at: https://api.corpay.com/llms.txt

Use this file to discover all available pages before exploring further.

Performance expectations:
p50: 1000 ms, p99: 1500 ms.
Measured on successful requests (2xx), server-side only.
How to interpret these metrics

Authorizations

Authorization
string
header
required

Use OAuth2 client credentials to obtain a bearer token.

UAT token endpoint: POST https://apigwuat.corpay.com/keycloak/realms/longship/protocol/openid-connect/token

Example:

curl --location 'https://apigwuat.corpay.com/keycloak/realms/longship/protocol/openid-connect/token' \
--header 'accept: application/json' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id=.......' \
--data-urlencode 'client_secret=......'

Path Parameters

cardIdentifier
integer
required

Body

application/json
cardAddress
object
required

If card address is provided then all the fields inside the address object needs to be provided.

Response

Operation status

The response is of type object.