Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"external_customer_id": "string",
"id": 0
}
Request Code Samples
curl --location 'https://test.your-api-server.com/mintedapi/CardStorage/delete' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"external_customer_id": "string",
"id": 0
}'
Responses
application/json
{
"data": [],
"success": true,
"code": 0,
"message": ""
}
Modified at 2024-12-30 14:34:31