Check Company Recommendation Status

Check the status of the recommendation to add a Company Name in the Intellizence database

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"
                   }
            ]
}
                                        

Last updated