Skip to main content
DELETE
/
v1
/
cards
/
{id}
Delete a card
curl --request DELETE \
  --url https://api-global.fastpaybrasil.com/v1/cards/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "2RhQg9M7ZCg3X3nMb9W1kX8Q",
  "deleted": true,
  "message": "Card deleted successfully"
}

Authorizations

Authorization
string
header
required

HTTP Basic authentication. Use your secret key as the username and an empty string as password. The API key should be base64 encoded in the format 'username:' when sending the Authorization header.

Path Parameters

id
string
required

Unique card identifier

Response

Card deleted successfully

id
string

Deleted card ID

Example:

"2RhQg9M7ZCg3X3nMb9W1kX8Q"

deleted
boolean
Example:

true

message
string
Example:

"Card deleted successfully"