v1
latestOpenAPI 3.0.02026-08-06112728.7 KBCard
Batch get organization card statuses
Requires card.create permission. Accepts from 1 to 100 internal card IDs and returns statuses in request order.
post/status/batch
Headers
Datestring
GMT server time, e.g. Tue, 21 Jan 2025 12:00:00 GMT. Required for every request.
Authorizationstring
HMAC-SHA256 Signature header. See the Authentication guide.
Digeststring
SHA-256 digest of the request body when a body is present.
Request body
Example request
{
"card_ids": [
"a441831c-a5c7-4bed-8f61-793738afd5bc",
"b552942d-b6d8-5cef-9062-804849bfe6cd"
]
}Response
Standard response envelope
Example response
{
"data": {
"cards": [
{
"card_id": "a441831c-a5c7-4bed-8f61-793738afd5bc",
"status": "active"
}
]
}
}