POST
/
v2
/
requests
/
flash_cards
Create a flash card request
curl --request POST \
  --url https://thirdparty.qonto.com/v2/requests/flash_cards \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "request_flash_card": {
    "note": "Library subscription",
    "payment_lifespan_limit": "250.00",
    "pre_expires_at": "2022-03-15T22:59:59.999Z"
  }
}'
{
"request_flash_card": {
"id": "965b8c57-72fd-4d12-8d85-56874104c81a",
"request_type": "flash_card",
"status": "pending",
"initiator_id": "cc32875a-a590-44c7-bdc1-0680ae72b0db",
"approver_id": "<string>",
"note": "Library subscription",
"declined_note": "<string>",
"payment_lifespan_limit": "250.00",
"pre_expires_at": "2022-03-15T22:59:59.999Z",
"currency": "EUR",
"processed_at": "<string>",
"created_at": "2021-11-24T10:33:23.817Z"
}
}

Authorizations

Authorization
string
header
required

Bearer authorization header: Bearer <token>, where <token> is the access token received from the authorization server at the end of the OAuth 2.0 flow.

Headers

X-Qonto-Staging-Token
string

Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.

Body

application/json

Response

Returns the request created.

The response is of type object.