GET api/v1/company/translation/group/{id}/vendorcategory/{translationid}

Pulls the list of vendor categories for the specified company translation. This method allows the vendor categories to be pulled separate from the main company translation.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

translationid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Ghostery.Privacy.Common.Objects.Company.VendorCategory
NameDescriptionTypeAdditional information
Id

integer

None.

LanguageId

integer

None.

Identifier

string

None.

Category

string

None.

Changed

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "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
  }
]