Linked Accounts

linked_accounts_account_id_set

Allows the verification or rejection of a linked account run by specifying the account ID. This operation updates the status of a linked account to either VERIFIED or REJECTED.

SecurityAPI_Secret_Key
Request
path Parameters
account_id
required
integer <int64>
header Parameters
call-ref
string

A call reference generated by the caller and unique to the caller to provide correlation between the caller and system with a maximum length of 255

Request Body schema: application/json
required
state
string (LinkedAccountRunRequestState)
Enum: "VERIFIED" "REJECTED"
Responses
204

Success - No Content

400

Invalid Request

default

Error

post/linked_accounts/{account_id}/set
Request samples
application/json
{
  • "state": "VERIFIED"
}
Response samples
application/json
{
  • "message": "string",
  • "validation": {
    }
}

linked_accounts_account_id_verify

This tool is used to simulate internal verification for linked accounts by Account ID.

SecurityAPI_Secret_Key
Request
path Parameters
account_id
required
integer <int64>
header Parameters
call-ref
string

A call reference generated by the caller and unique to the caller to provide correlation between the caller and system with a maximum length of 255

Request Body schema: application/json
required
steps
Array of strings (VerifyRequestByAccountIdVerificationStep)
Items Enum: "INTERNAL_CHECKS" "TRANSFER_INSTRUCTION" "USER_DECLARATION_SCA_CHALLENGE"
result
string (VerifyRequestByAccountIdVerificationState)
Enum: "COMPLETED" "REJECTED"
Responses
204

Success - No Content

400

Invalid Request

409

Conflict

default

Error

post/linked_accounts/{account_id}/verify
Request samples
application/json
{
  • "steps": [
    ],
  • "result": "COMPLETED"
}
Response samples
application/json
{
  • "message": "string",
  • "validation": {
    }
}