Freeze card
curl --request POST \
--url https://api.example.com/api/v1/cards/{card_id}/freeze \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/cards/{card_id}/freeze"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/cards/{card_id}/freeze', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Cards
Freeze card
Temporarily freeze a card by Card UUID. Can be unfrozen later.
POST
/
api
/
v1
/
cards
/
{card_id}
/
freeze
Freeze card
curl --request POST \
--url https://api.example.com/api/v1/cards/{card_id}/freeze \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/cards/{card_id}/freeze"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/cards/{card_id}/freeze', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?