GET api/Product/Topics

Get all Topic for account./>

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of topic.

Collection of GetTopicDictionaryResponse
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Key

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "0320e215-7ce0-431f-a6b3-63e47c58097b",
    "Key": "sample string 1"
  },
  {
    "Id": "0320e215-7ce0-431f-a6b3-63e47c58097b",
    "Key": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGetTopicDictionaryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Responses">
  <GetTopicDictionaryResponse>
    <Id>0320e215-7ce0-431f-a6b3-63e47c58097b</Id>
    <Key>sample string 1</Key>
  </GetTopicDictionaryResponse>
  <GetTopicDictionaryResponse>
    <Id>0320e215-7ce0-431f-a6b3-63e47c58097b</Id>
    <Key>sample string 1</Key>
  </GetTopicDictionaryResponse>
</ArrayOfGetTopicDictionaryResponse>