curl --request POST \
--url http://localhost:3001/v1/counterparty/{id}/validate \
--header 'Authorization: Bearer <token>'{
"bankAccount": {
"name": "<string>",
"iban": "<string>",
"bic": "<string>",
"countryCode": "<string>",
"address": "<string>",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"paymentProvider": "<string>",
"status": "VALID",
"initializedAt": "2023-11-07T05:31:56Z",
"mailTrackings": {
"version": 123,
"type": "ONBOARDING",
"status": "ACCEPTED",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"fullName": "<string>",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}Initiate a bank account verification. The counterparty will receive an email with a link to validate his account.
curl --request POST \
--url http://localhost:3001/v1/counterparty/{id}/validate \
--header 'Authorization: Bearer <token>'{
"bankAccount": {
"name": "<string>",
"iban": "<string>",
"bic": "<string>",
"countryCode": "<string>",
"address": "<string>",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"paymentProvider": "<string>",
"status": "VALID",
"initializedAt": "2023-11-07T05:31:56Z",
"mailTrackings": {
"version": 123,
"type": "ONBOARDING",
"status": "ACCEPTED",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"fullName": "<string>",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Counterparty ID
The bank account that was verified.
Show child attributes
The payment provider that was used to verify the bank account.
The status of the bank account verification.
VALID, INVALID, VALIDATION_FAILED, PENDING The date and time the bank account verification was initiated.
The mail tracking information for the verification email.
Show child attributes
The full name of the bank account.
The unique identifier of the entity.
The date and time the entity was created.
The date and time the entity was last updated.
Was this page helpful?