GET api/CustomerTag/GetCustomerTagList?userId={userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
GetCustomerTagListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| ExceptionMessage | string |
None. |
|
| Items | Collection of Item |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ExceptionMessage": "sample string 2",
"Items": [
{
"Id": 1
},
{
"Id": 1
}
]
}
application/xml, text/xml
Sample:
<GetCustomerTagListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
<ExceptionMessage>sample string 2</ExceptionMessage>
<Items>
<GetCustomerTagListResponse.Item>
<Id>1</Id>
</GetCustomerTagListResponse.Item>
<GetCustomerTagListResponse.Item>
<Id>1</Id>
</GetCustomerTagListResponse.Item>
</Items>
<Success>true</Success>
</GetCustomerTagListResponse>