Use the Company Insights Tech Profile API's endpoint to retrieve tech profile for a specific company.
Endpoint
GET https://api.insideview.com/api/v1/company/{companyId}/techProfile
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 |
companyId | Integer | Yes | A valid company ID |
Responses
Here are the major responses the API may return.
for details on the errors, please refer to the API Error Codes article.
HTTP 200
Returns either a JSON or XML data structure depending on the request Accept header.
Name | type | Description |
categories | Array | Array of categories |
categories>categoryId | String | Category id |
categories>categoryName | String | Category Name |
categories>subCategories | Array | Array of Sub Categories |
categories>subCategories>subCategoryId | String | Sub Category Id |
categories>subCategories>subCategoryName | String | Sub category Name |
categories>subCategories>products | Array | Array of products |
categories>subCategories>products>productId | String | Product ID |
categories>subCategories>products>productName | String | Product name |
application/json Example
{ "categories":[ { "categoryId":"12", "categoryName":"Project Management", "subCategories":[ { "subCategoryId":"1595695491", "subCategoryName":"Project Portfolio Management (PPM)", "products":[ { "productId":"3093506260", "productName":"Primavera Enterprise Project Portfolio Management" }, { "productId":"3212249385", "productName":"Planview" } ] } ] } ],
"companyId": 726263
"currentCompanyId": 1755 }
application/xml Example
<?xml version="1.0" encoding="UTF-8"?> <techProfile> <categories> <category> <categoryId>12</categoryId> <categoryName>Project Management</categoryName> <subCategories> <subCategory> <products> <product> <productId>1469146308</productId> <productName>VersionOne</productName> </product> <product> <productId>707151835</productId> <productName>Pivotal Tracker</productName> </product> </products> <subCategoryId>3047556431</subCategoryId> <subCategoryName>Project Management</subCategoryName> </subCategory> </subCategories> </category> </categories>
<companyId>726263</companyId>
<currentCompanyId>1755</currentCompanyId> </techProfile>
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.
Comments
0 comments
Please sign in to leave a comment.