Follow the question structure recommended by Dev Bot before submitting your integration questions.
| Parameter | Type | Required | Description |
|---|---|---|---|
| idMember | int32 | Yes | Unique identifier of the member whose credit cards will be queried. |
| Field | Type | Description |
|---|---|---|
| idCreditCard | int32 | Unique identifier of the credit card. |
| paymentMethod | string | Payment method. |
| cardHolder | string | Cardholder's name. |
| brand | string | Brand of the credit card (e.g., Visa, Mastercard). |
| last4Digits | string | Last four digits of the credit card. |
| expirationDate | string | Expiration date of the card. month/year |
| gateway | string | Payment gateway. |
username:passwordAuthorization: Basic *****************curl --location 'https://evo-integracao-api.w12app.com.br/api/v1/members//creditcard' \
--header 'Authorization: Basic <encoded-value>'[
{
"idCreditCard": 0,
"paymentMethod": "string",
"cardHolder": "string",
"brand": "string",
"last4Digits": "string",
"expirationDate": "string",
"gateway": "string"
}
]