Card withdrawal

Create a withdrawal from a card

Endpoint

POST /{san}/withdraw

Path parameters

  • san — Unique card identifier in the CinCin system

Request

circle-info

Content-Type: application/json

Request body

Request (application/json)
{
  "request_id": "request-id-12345",
  "currency": "USD",
  "amount": 3.82
}

Request parameters

  • *request_id (string, 12-36 characters) — Unique identifier for the request

  • *currency (string) — Currency code (must match card currency)

  • *amount (decimal, > 0.01) — Amount to withdraw

Response

Response parameters

  • type (string) — Operation type

  • status (string) — Actual status of the operation

  • docid (number) — Tracking document ID

  • request_id (string) — Request identifier provided in the request

  • withdrawal (object) — Withdrawal operation details

  • withdrawal.san (string) — Unique card identifier in the CinCin system

  • withdrawal.amount (decimal) — Amount withdrawn from the card

  • withdrawal.currency (string) — Currency code

Last updated