ℹ️Company Informations
This feature enables the retrieval of all information about a company using its RCCM number. It is also possible to retrieve the entire history of changes the company has undergone.
Last updated
This feature enables the retrieval of all information about a company using its RCCM number. It is also possible to retrieve the entire history of changes the company has undergone.
GET /search/company
Headers:
Api-Key (required): provided by Danaya
Api-Secret (required): provided by Danaya
Content-Type (required): application/json
Request Body: N/A
Query Params:
rccmNumber (required) : string (example: CI-ABJ-03-2024-B17-00022)
Responses:
If the company is found all the details will be return
OK:
Code: 200
Body
{
"rccm": "string",
"formalityNumber": "string",
"capitalInCash": "string",
"capital": "string",
"industrialCapital": "string",
"capitalInKind": "string",
"activities": [
"string"
],
"POBox": "string",
"applicants": "string",
"companyName": "string",
"startDate": "2024-04-24T09:30:41.042Z",
"owners": [
{
"firstName": "string",
"lastName": "string",
"dateAndPlaceOfBirth": "string",
"role": "string",
"POBox": "string",
"phoneNumber1": "string",
"phoneNumber2": "string",
"emailAddress": "string"
}
],
"duration": 0,
"formalityDate": "2024-04-24T09:30:41.043Z",
"modificationDate": "2024-04-24T09:30:41.043Z",
"businessName": "string",
"legalForm": "string",
"modificationType": "string",
"tradeName": "string",
"headquarters": "string",
"acronym": "string",
"formalityType": "string",
"people": "string"
}Code : 401
Code: 400
GET /search/company-changes
Headers:
Api-Key (required): provided by Danaya
Api-Secret (required): provided by Danaya
Content-Type (required): application/json
Request Body: N/A
Query Params:
rccmNumber (required) : string (example: CI-ABJ-03-2024-B17-00022)
Responses:
If the company is found all it's changes details will be return
OK:
Code: 200
Body
{
"rccm": "string",
"historyList": [
{
"formalityDate": "string",
"formalityType": "string",
"natureOfModification": "string",
"capital": "string",
"headOffice": "string",
"activities": [
{
"activity": "string"
}
]
}
]
}Code : 401
Code: 400
Last updated