Use this API to submit any inconsistency in Company information.
Endpoint
POST https://api.insideview.com/api/v1/target/companies/{NewCompanyId}/wrongInfo
Request
HTTP Headers
Header Name | Type | Required | Description |
accessToken | String | Yes |
Valid access token. |
Accept | String | No | Selects the response's content type. Valid values are application/json and application/xml (default). |
URI Parameters
Parameter Name | Type | Required | Description |
newCompanyId | String | Yes | New Company ID |
Query Parameters
Parameter Name | Type | Required | Description |
industryCode | String | No1 | Use this if Company Industry is wrong |
revenue | String | No1 | Use this if Revenue is wrong |
employees | String | No1 | Use this if Number of Employees is wrong |
address | String | No1 | Use this if Address is wrong |
websites | String | No1 | Use this if Company website is wrong |
other | String | No1 | Any additional detail or field you want to report |
removeCompany | String | No1,2 | Use this if you wish to remove Company |
1: the request should include at least one of the above parameters.
2: If you are using this parameter, you can not use any other parameters.
Responses
HTTP 200
Returns either a JSON or XML data structure depending on the request Accept header.
Name | type | Description |
requestId | String | Request Id for submitted wrong Info |
companyId | String | InsideView Company ID |
status | String | Status of the request |
fields | Array | Fields reported |
fields revenue | String | Annual Revenue reported in millions of $ |
fields industryCode | String | Industry Id reported |
fields other | String | Other fields reported |
fields employees | Integer | Employee count reported |
fields address | String | address reported |
fields websites | String | company URL reported |
fields removeCompany | String | Reported to remove company |
createdDate | String | Request submission date |
application/json example
{ "requestId": "1107015", "companyId": "K7ytJKFut0yG3NSr1xemWXwK_94OYFQJa228CcvRG854ayacqwPY-4mPbmSeNKZm", "status": "new", "fields": { "annualRevenue": 2000000, "employeeCount": 123, "address": "aaaa", "companyUrl": "www.abc.com", "otherNote": "naics is wrong", "industryId": "2" }, "createdDate": "2016-07-05T10:30:14.542Z" }
application/xml example
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <companyWrongInfo> <companyId>K7ytJKFut0yG3NSr1xemWXwK_94OYFQJa228CcvRG854ayacqwPY-4mPbmSeNKZm</companyId> <createdDate>2016-07-05T10:38:44.159Z</createdDate> <fields> <address>aaaa</address> <annualRevenue>2000000</annualRevenue> <companyUrl>www.abc.com</companyUrl> <employeeCount>123</employeeCount> <industryId>2</industryId> <otherNote>naics is wrong</otherNote> </fields> <requestId>1107017</requestId> <status>new</status> </companyWrongInfo>
HTTP 400
Invalid query parameter(s).
HTTP 401
Unauthorized Error - Cannot use API's without setting a valid accessToken in header.
HTTP 405
Method Not Allowed - Your are not allowed to access this API.
HTTP 429
Request is throttled.