GET api/Product/Targets

Get all target dictionary for account./>

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of target.

Collection of GetTargetDictionaryResponse
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Key

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "46c38e5a-de21-4192-9ccd-328ae6ec6f16",
    "Key": "sample string 1"
  },
  {
    "Id": "46c38e5a-de21-4192-9ccd-328ae6ec6f16",
    "Key": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGetTargetDictionaryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Responses">
  <GetTargetDictionaryResponse>
    <Id>46c38e5a-de21-4192-9ccd-328ae6ec6f16</Id>
    <Key>sample string 1</Key>
  </GetTargetDictionaryResponse>
  <GetTargetDictionaryResponse>
    <Id>46c38e5a-de21-4192-9ccd-328ae6ec6f16</Id>
    <Key>sample string 1</Key>
  </GetTargetDictionaryResponse>
</ArrayOfGetTargetDictionaryResponse>