API Documentation
  • 👋Welcome
  • 🚦Getting Started
    • 🖥️Environment setup
    • 👨‍💻Sign up on portal
    • Subscribe to APIs
    • 📖Terminology
    • 🔐Authorization
  • 💲PRICING
    • Subscription
  • API Documentation
    • Companies API reference
      • Companyprofile
      • Information
      • Appointments
      • Directors
      • Employee verification
      • Registered office address
      • Filing history
    • BO API reference
      • Entity statement
      • Ownership or control statement
      • Natural person statement
      • Supporting documents
      • Individual document
  • Specification
  • USER GUIDE
    • For Data Consumers
Powered by GitBook
On this page

Was this helpful?

  1. API Documentation
  2. Companies API reference

Companyprofile

Was this helpful?

Company profile

post

Get company profile

Authorizations
Body

The company number of the company information to return.

enterprise_numberstringRequired
Responses
200
Company Profile
application/json
401
Unauthorised
application/json
post
POST /enterprise/v1/companyprofile HTTP/1.1
Host: cipc-apm-rs-dev.azure-api.net
Ocp-Apim-Subscription-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 38

{
  "enterprise_number": "2020/939681/07"
}
{
  "Company": [
    {
      "enterprise_number": "string",
      "enterprise_name": "string",
      "enterprise_short_name": "string",
      "trading_name": "string",
      "translated_name": "string",
      "enterprise_type_description": "string",
      "business_activity": "string",
      "registration_date": "string",
      "business_start_date": "string",
      "enterprise_status_description": "string",
      "financial_year_end": "string",
      "financial_year_effective_date": "string",
      "tax_number": "string",
      "office_address": [
        {
          "address_line_1": "string",
          "address_line_2": "string",
          "city": "string",
          "region": "string",
          "country": "string",
          "postal_code": "string"
        }
      ],
      "postal_address": [
        {
          "address_line_1": "string",
          "address_line_2": "string",
          "city": "string",
          "region": "string",
          "postal_code": "string",
          "country": "string"
        }
      ],
      "directors": [
        {
          "first_names": "string",
          "surname": "string",
          "initials": "string",
          "date_of_birth": "string",
          "director_status": "string",
          "director_type": "string",
          "designation": "string",
          "appointment_date": "string",
          "resignation_date": "string",
          "member_size_interest": 0,
          "member_contribution": 0,
          "residential_address_1": "string",
          "residential_address_2": "string",
          "residential_address_3": "string",
          "residential_address_4": "string",
          "residential_postal_code": "string",
          "country": "string"
        }
      ],
      "secretaries": [],
      "auditors": [],
      "captial": [
        {
          "capital_type_descr": "string",
          "cap_no_shares": 0,
          "cap_par": 0,
          "cap_amt_share": 0,
          "cap_prem": 0
        }
      ],
      "history": [
        {
          "change_date": "string",
          "change_description": "string"
        }
      ]
    }
  ]
}