curl --request POST \
--url https://tokens.pushcash.com/tokenize \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "user_28CJjV7P4Go5PNJvfzghiD",
"pan": "5555555555554444",
"cvv": "123",
"exp_month": "12",
"exp_year": "28"
}
'{
"token": "token_mbDRHFi3dxIZEtykHsgUGC"
}Exchange raw cardholder data for a short-lived token that can be passed to authorize-payment.
This endpoint is hosted on a PCI-isolated domain and must be called directly with the cardholder’s PAN, CVV, and expiration date. Only operators with their own PCI DSS compliance should call this endpoint directly.
curl --request POST \
--url https://tokens.pushcash.com/tokenize \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "user_28CJjV7P4Go5PNJvfzghiD",
"pan": "5555555555554444",
"cvv": "123",
"exp_month": "12",
"exp_year": "28"
}
'{
"token": "token_mbDRHFi3dxIZEtykHsgUGC"
}Documentation Index
Fetch the complete documentation index at: https://docs.pushcash.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The Push identifier for the user the token will be associated with.
"user_28CJjV7P4Go5PNJvfzghiD"
The cardholder's primary account number (PAN).
"5555555555554444"
The card verification value.
"123"
The two-digit card expiration month.
"12"
The two-digit card expiration year.
"28"
Token created successfully
A short-lived token that can be submitted to /authorize to process a payment.
"token_mbDRHFi3dxIZEtykHsgUGC"