Endpoint #
URL:
https://crm-api-test.10npay.com/api/v1/IndividualPaymentMethod/{individualId}
Method: GET
Description: Retrieve the payment method details for an individual.
Request Headers
- accept: text/plain
- Authorization: Bearer {Token}
CURL Example
curl -X 'GET' \
'https://crm-api-test.10npay.com/api/v1/IndividualPaymentMethod/740' \
-H 'accept: text/plain' \
-H 'Authorization: Bearer {Token}'
Responses #
Success #
Status Code: 200
Description: Payment method exists.
[
{
"alias": "string",
"validityMonth": "string",
"validityYear": "string",
"bankName": "string",
"swift": "string",
"currency": "string",
"cardType": "string",
"paymentType": "string",
"value": "string",
"ownerName": "string",
"accountHolderName": "string",
"lastFundsDeposited": 0,
"lastFundsWithdrawn": 0,
"has2FAOr3DS": true,
"bankStatement": "string",
"cvvOrCvcCode": "string",
"status": "string",
"bankAddress": "string",
"vPos": "string"
}
]
Status Code: 400
Description: Payment method does not exist.
Error: Not Found
Status Code: 404
Description: Request property mismatched or not found.
Error: Server ErrorStatus
Code: 500
Description: Internal error occurred.
Snippet #
Result of the call