v1
latestOpenAPI 3.0.02026-07-26224386470.0 KBBrokerSubmissions
Add details to broker submission
Add company and owner details to existing broker submission. Authentication: Requires a broker API key in the x-api-key header. Generate keys using the /api/broker_submissions/api_keys/generate endpoint.
post/api/broker_submissions/{submission_heron_id}/update_information
Path parameters
submission_heron_idstring required
Request body
Example request
{
"owner_1": {
"date_of_birth": "1990-01-01",
"ownership_percentage": 100
},
"owner_2": {
"date_of_birth": "1990-01-01",
"ownership_percentage": 100
}
}Response
OK
Example response
{
"owner_1": {
"date_of_birth": "1990-01-01",
"ownership_percentage": 100
},
"owner_2": {
"date_of_birth": "1990-01-01",
"ownership_percentage": 100
},
"source_type": "iso_application_form"
}