- Introduction
- Authentication & authorization
- Environments
- Transaction statuses
- Notifications
- Response codes
- Error codes
- purchase
- refund
- payout
- payment-methods
- payment-links
- customers
- Create customerPOST
- Remove customerDELETE
- Add customer recipientPOST
- Add payout cardPOST
- Remove payout cardDELETE
- Fetch payout card listGET
- Update payout card detailsPATCH
- Fetch saved subscription customer list V3GET
- Fetch customerGET
- Update a customerPATCH
- Fetch cardGET
- Update card detailsPATCH
- Remove cardDELETE
- Fetch card listGET
- Fetch customer recipient listGET
- Fetch customer recipientGET
- Update customer details recipientPATCH
- Remove customer recipientDELETE
- Fetch saved merchant customer payout recipient list V3GET
- Verify merchant's customer payout recipient cardPOST
- Fetch saved merchant customer's payout card V3GET
- Initialize widget payout card processPOST
- Update merchant payout card aliasPATCH
- Fetch saved payout card list V3GET
- Removes merchant customer payout card.DELETE
- Add customer payout cardPOST
- Fetch saved payout card V3GET
- Removes customer saved payout card V3DELETE
- Add paynow recipientPOST
- Remove paynow profileDELETE
- authorization
- subscriptions
- Fetch subscription products list
- Add new subscription product
- Fetch subscription product
- Update subscription product
- Removes subscription product
- Fetch subscription plan list
- Add new subscription plan
- Fetch subscription plan
- Removes subscription plan
- Activate subscription plan
- Deactivate subscription plan
- Fetch subscriptions list
- Fetch subscription
- Removes subscription
- Cancel subscription
- reports
Fetch card
GET
https://api.zen.com/v3/customers/{merchantCustomerId}/payments/card/{id}
customers
Request
Path Params
merchantCustomerId
string <uuid>
required
Example:
3fa85f64-5717-4562-b3fc-2c963f66afa6
id
string <uuid>
required
Example:
3fa85f64-5717-4562-b3fc-2c963f66afa6
Header Params
request-id
string
required
>= 38 characters<= 1024 characters
Example:
|us04oqdnzFQVr0rITD9/c9OvDRE2sXVfwerv.
Match pattern:
^[a-zA-Z0-9?&:_|\-\/=+.,#\s]+$
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.zen.com/v3/customers//payments/card/' \
--header 'request-id;'
Responses
🟢200OK
application/json
Body
id
string <uuid>
required
customerId
string <uuid>
optional
<= 64 characters
firstTransactionId
string <uuid>
optional
>= 1 characters<= 128 characters
cardName
string
optional
<= 128 characters
cardHolderName
string
optional
<= 128 characters
cardHolder
object
optional
firstName
string
optional
<= 128 characters
middleName
string | null
optional
<= 128 characters
lastName
string
optional
<= 128 characters
birthDate
string
optional
Match pattern:
^(19|20)\d{2}-(0[1-9]|1[0,1,2])-(0[1-9]|[12][0-9]|3[01])$
addressLine1
string
optional
<= 128 characters
addressLine2
string
optional
<= 128 characters
addressCity
string
optional
<= 128 characters
addressCountry
string
optional
<= 32 characters
addressState
string
optional
<= 32 characters
addressZip
string
optional
<= 16 characters
organization
string
required
>= 1 characters<= 32 characters
brand
string
optional
<= 32 characters
bank
string
optional
<= 128 characters
country
string
optional
<= 3 characters
tokenizationMethod
enum<string>
optional
<= 32 characters
Allowed values:
apple_paygoogle_payinternal
last4
string
required
>= 1 characters<= 4 characters
expMonth
string
required
>= 1 characters<= 2 characters
expYear
string
required
>= 1 characters<= 4 characters
verificationStatus
string
optional
<= 2 characters
verificationDate
string
optional
<= 2 characters
status
enum<string>
optional
>= 1 characters
Allowed values:
verifiedunverifiedexpiredinvalidpending
isDefault
boolean
required
eea
boolean
optional
commercial
boolean
optional
createdAt
string <date-time>
required
Example
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"customerId": "87d8e330-2878-4742-a86f-dbbb3bf522ac",
"firstTransactionId": "03056aca-c5f2-4f6b-a174-27e4af663155",
"cardName": "string",
"cardHolderName": "string",
"cardHolder": {
"firstName": "string",
"middleName": "string",
"lastName": "string",
"birthDate": "string"
},
"addressLine1": "string",
"addressLine2": "string",
"addressCity": "string",
"addressCountry": "string",
"addressState": "string",
"addressZip": "string",
"organization": "string",
"brand": "string",
"bank": "string",
"country": "str",
"tokenizationMethod": "apple_pay",
"last4": "stri",
"expMonth": "st",
"expYear": "stri",
"verificationStatus": "st",
"verificationDate": "st",
"status": "verified",
"isDefault": true,
"eea": true,
"commercial": true,
"createdAt": "2019-08-24T14:15:22Z"
}
🟠404Record Not Found
Modified at 2025-07-10 11:28:41