API Documentation
Business
- Account
- Disburse
- Payment
Cards
Transactions
Miscellaneous
Cards
Freeze Card
POST
/
cards
/
freeze
curl --request POST \
--url https://api.sandbox.saalal.com/v1/cards/freeze \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"reference": "342e6d10-bbf1-41d4-ac69-06491f32e6e4"
}'
{
"message": "Card freezed",
"statusCode": 200,
"data": {
"card": {
"reference": "d282e4a6-1fb6-4827-a6ae-a780263287d7",
"card_number": null,
"card_brand": "Visa",
"card_type": "virtual",
"cvv2": null,
"expiry": null,
"balance": 0,
"status": "issuing"
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Body
application/json
Response
200 - application/json
OK
The response is of type object
.
curl --request POST \
--url https://api.sandbox.saalal.com/v1/cards/freeze \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"reference": "342e6d10-bbf1-41d4-ac69-06491f32e6e4"
}'
{
"message": "Card freezed",
"statusCode": 200,
"data": {
"card": {
"reference": "d282e4a6-1fb6-4827-a6ae-a780263287d7",
"card_number": null,
"card_brand": "Visa",
"card_type": "virtual",
"cvv2": null,
"expiry": null,
"balance": 0,
"status": "issuing"
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.