GET dz_api/CustomerTag/GetTagList

获取客户标签列表

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

获取客户标签列表

Collection of TagContentInfo
NameDescriptionTypeAdditional information
TagId

标签ID

integer

None.

TagContent

标签内容

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TagId": 1,
    "TagContent": "sample string 2"
  },
  {
    "TagId": 1,
    "TagContent": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTagContentInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.Model.Customer">
  <TagContentInfo>
    <TagContent>sample string 2</TagContent>
    <TagId>1</TagId>
  </TagContentInfo>
  <TagContentInfo>
    <TagContent>sample string 2</TagContent>
    <TagId>1</TagId>
  </TagContentInfo>
</ArrayOfTagContentInfo>