Company Search With Name
This API allows you to search for a company by providing its name and country code. The country code is in strict compliance with the ISO-3166-1 Alpha-2 Standards
TEST DATA
company_name: Doe Venture
country_code: NA
POST
{{URL}}/identitypass/verification/global/company/search
Request Header
| Key | Description | 
|---|---|
| app-id | Your App ID | 
| x-api-key | Your Secret Key | 
Request Body
| Key | Description | 
|---|---|
| country_code | Company country code e.g NA. Get country codes here | 
| company_name | Company name | 
Sample Response
{
    "status": true,
    "response_code": "00",
    "message": "Companies Retrieved Successfully",
    "data": [
        {
            "name": "Doe Venture",
            "shortName": null,
            "brandName": null,
            "internationalNumber": "k2748478487",
            "countryCode": "NA"
        }
    ]
}
Response Description
| Response | Description | 
|---|---|
| status | Indicates that the request was successful. | 
| response_code | Represents the response code. | 
| message | Provides a message indicating that the companies were retrieved successfully. | 
| data | An array containing the retrieved company information. | 
| name | The name of the company. | 
| shortName | The short name of the company. | 
| brandName | The brand name of the company. | 
| internationalNumber | The international number or registration code of the company. | 
| countryCode | The country code of the company. | 
Updated about 1 year ago
