GET api/SMSConfig/Dictionaries?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
Collection of SMSDictionaryModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| BrandName | string |
None. |
|
| IsAD | boolean |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "d5381b1a-aa37-4f03-bd2e-2b4ab7d9dc79",
"brandName": "sample string 2",
"isad": true,
"description": "sample string 4"
},
{
"id": "d5381b1a-aa37-4f03-bd2e-2b4ab7d9dc79",
"brandName": "sample string 2",
"isad": true,
"description": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfSMSDictionaryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.SMS">
<SMSDictionaryModel>
<BrandName>sample string 2</BrandName>
<Description>sample string 4</Description>
<Id>d5381b1a-aa37-4f03-bd2e-2b4ab7d9dc79</Id>
<IsAD>true</IsAD>
</SMSDictionaryModel>
<SMSDictionaryModel>
<BrandName>sample string 2</BrandName>
<Description>sample string 4</Description>
<Id>d5381b1a-aa37-4f03-bd2e-2b4ab7d9dc79</Id>
<IsAD>true</IsAD>
</SMSDictionaryModel>
</ArrayOfSMSDictionaryModel>