Return company registered office address
Payload
registered office address
const response = await fetch('https://cipc-apm-rs-dev.azure-api.net/enterprise/v1/registered-office-address', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "enterprise_number": "string" }), }); const data = await response.json();
{ "registered-office-address": [ { "enterprise_number": "text", "physical_address_1": "text", "physical_address_2": "text", "physical_address_3": "text", "physical_address_4": "text", "physical_code": "text", "postal_address_1": "text", "postal_address_2": "text", "postal_address_3": "text", "postal_address_4": "text", "postal_code": "text" } ] }