Use the Company Insights Installed Tech API's endpoint to retrieve tech profile for a specific company using new company id.
Endpoint
GET https://api.insideview.com/api/v1/target/companies/{newCompanyId}/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 |
newCompanyId | String | Yes | A valid new company ID |
Responses
Here are the major responses the API may return.
For details on the errors, see API Error Codes.
HTTP 200
Returns either a JSON or XML data structure depending on the request Accept header.
Name | type | Description |
categories | Array | Array of categories |
categoriescategoryId | String | Category id |
categoriescategoryName | String | Category Name |
categoriessubCategories | Array | Array of Sub Categories |
categoriessubCategoriessubCategoryId | String | Sub Category Id |
categoriessubCategoriessubCategoryName | String | Sub category Name |
categoriessubCategoriesproducts | Array | Array of products |
categoriessubCategoriesproductsproductId | String | Product ID |
categoriessubCategoriesproductsproductName | 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" } ] } ] } ] }
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> </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.