GET api/v1/company/categorybucket/inprogress/{companyCategoryBucketId}/{languageId}
Pulls one in progress category bucket for a company
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyCategoryBucketId | integer |
Required |
|
| languageId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Company category bucket in progress with vendor categories
Ghostery.Privacy.Common.Objects.Company.CompanyCategoryBucket| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| IsEssential | boolean |
None. |
|
| IsDataSharing | boolean |
None. |
|
| VendorCategories | Collection of Ghostery.Privacy.Common.Objects.Company.VendorCategory |
None. |
|
| Translations | Collection of Ghostery.Privacy.Common.Objects.Company.CompanyCategoryBucketTranslation |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"name": "sample string 2",
"description": "sample string 3",
"isEssential": true,
"isDataSharing": true,
"vendorCategories": [
{
"id": 1,
"languageId": 2,
"identifier": "sample string 3",
"category": "sample string 4",
"changed": true
},
{
"id": 1,
"languageId": 2,
"identifier": "sample string 3",
"category": "sample string 4",
"changed": true
}
],
"translations": [
{
"languageId": 1,
"languageName": "sample string 2",
"browserCode": "sample string 3",
"nameText": "sample string 4",
"descriptionText": "sample string 5"
},
{
"languageId": 1,
"languageName": "sample string 2",
"browserCode": "sample string 3",
"nameText": "sample string 4",
"descriptionText": "sample string 5"
}
]
}