Transact - Account Opening Run in API Explorer
Ask AI
POST
/api/v1/addons/transact/account-opening
curl \
--request POST 'https://api.plannrcrm.com/api/v1/addons/transact/account-opening' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"adviser_id":"123456789","investors":[{"nino":"123456789","title":"mr","gender":"male","surname":"Miggins","given_names":"Ian","date_of_birth":"1980-12-12","email_address":"text@example.com","mobile_number":{"number":"07700900000","country":"GB"},"nationalities":["GB"],"postal_address":{"line1":"1 Washington Street","line2":"Worcester","country":"GB","post_code":"WR1 1NL"},"tax_residencies":[],"investor_category":"RETAIL","residential_address":{"line1":"1 Washington Street","line2":"Worcester","country":"GB","post_code":"WR1 1NL"}}],"bank_account":{"sort_code":"123456","account_number":"12345678","is_building_society":true,"account_name_or_roll_number":"Ian Miggins"}}'
Request examples
{
"adviser_id": "123456789",
"investors": [
{
"nino": "123456789",
"title": "mr",
"gender": "male",
"surname": "Miggins",
"given_names": "Ian",
"date_of_birth": "1980-12-12",
"email_address": "text@example.com",
"mobile_number": {
"number": "07700900000",
"country": "GB"
},
"nationalities": [
"GB"
],
"postal_address": {
"line1": "1 Washington Street",
"line2": "Worcester",
"country": "GB",
"post_code": "WR1 1NL"
},
"tax_residencies": [],
"investor_category": "RETAIL",
"residential_address": {
"line1": "1 Washington Street",
"line2": "Worcester",
"country": "GB",
"post_code": "WR1 1NL"
}
}
],
"bank_account": {
"sort_code": "123456",
"account_number": "12345678",
"is_building_society": true,
"account_name_or_roll_number": "Ian Miggins"
}
}
Response examples (401)
{
"message": "Unauthenticated."
}