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