POST api/v1/company/translation/export

Given a set of translation ids, a CSV formatted file will be returned.

Request Information

URI Parameters

None.

Body Parameters

Ghostery.Privacy.Common.Objects.Company.TranslationExport
NameDescriptionTypeAdditional information
TranslationIds

Collection of integer

None.

GroupId

integer

None.

CsvString

string

None.

Request Formats

application/json, text/json

Sample:
{
  "translationIds": [
    1,
    2
  ],
  "groupId": 1,
  "csvString": "sample string 2"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'System.Web.Http.ModelBinding.JQueryMvcFormUrlEncodedFormatter' to write type 'Ghostery.Privacy.Common.Objects.Company.TranslationExport'.

Response Information

Resource Description

Ghostery.Privacy.Common.Objects.Company.TranslationExport
NameDescriptionTypeAdditional information
TranslationIds

Collection of integer

None.

GroupId

integer

None.

CsvString

string

None.

Response Formats

application/json, text/json

Sample:
{
  "translationIds": [
    1,
    2
  ],
  "groupId": 1,
  "csvString": "sample string 2"
}