# Check Company Recommendation Status

`GET /api/v1/company-recommendation/{RECOMMENDATION_ID} HTTP/1.1`

Replace RECOMMENDATION\_ID with the recommendation id that you received in response of posting the recommendation

**Response body**

```
{
            "status": "status_code",
            "message": "status_message",
            "matches":[
                   {
                        "id": "company_id",
                        "name": "company_name",
                        "domain": "company_domain"
                   }
            ]
}
                                        
```

| Status code                 | Description                                                                                                           |
| --------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| 201                         | Recommendation request is pending                                                                                     |
| 404                         | Invalid recommendation id                                                                                             |
| EXACT\_MATCH                | Exact match found for the recommended company name and the recommended company name is added in Intellizence database |
| REBRANDED\_MERGED\_ACQUIRED | The recommended company is been rebranded or merged or acquired.                                                      |
| MULTI\_MATCHES              | There are many matches exist for the recommended company name                                                         |
| INVALID                     | The recommended company name is invalid                                                                               |

| matches | <p>Array which contains:</p><ul><li>Intellizence company id, name and domain in case of EXACT\_MATCH and REBRANDED\_MERGED\_ACQUIRED</li><li>All matching company names and domains in case of MULTI\_MATCHES</li><li>Empty array in case of INVALID</li></ul> |
| ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
