POST
/
v1
/
recipient
/
{id}
/
validate
Initiate bank account verification
curl --request POST \
  --url http://localhost:3001/v1/recipient/{id}/validate \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "bankAccount": {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "name": "<string>",
    "iban": "<string>",
    "bic": "<string>",
    "countryCode": "<string>",
    "address": "<string>"
  },
  "paymentProvider": "<string>",
  "status": "VALID",
  "initializedAt": "2023-11-07T05:31:56Z",
  "mailTrackings": {
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "version": 123,
    "type": "ONBOARDING",
    "status": "ACCEPTED"
  },
  "fullName": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Recipient ID

Response

200 - application/json

The response is of type object.