POST
/
v2
/
sepa
/
skip_verify_payee
Skip SEPA payee verification
curl --request POST \
  --url https://thirdparty.qonto.com/v2/sepa/skip_verify_payee \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "requests": [
    {
      "id": "req_001",
      "beneficiary_name": "John Doe",
      "iban": "FR1420041010050500013M02606"
    },
    {
      "id": "req_002",
      "beneficiary_name": "Jane Smith",
      "iban": "GB82WEST12345698765432"
    }
  ]
}'
{
  "proof_token": "proof_1234567890abcdef"
}

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
requests
object[]
required

List of payee verification requests to skip

Required array length: 1 - 400 elements

Response

Skip verification request processed successfully

Response object indicating successful processing of skip request. Successfully processed requests will return a 200 status code.

proof_token
string

Token representing proof of a skip verification attempt. This token is valid for 23 hours to initiate a transfer. This limit might change depending on further security considerations.

Example:

"proof_1234567890abcdef"