POST api/CustomerTag/ExistUserTag
Request Information
URI Parameters
None.
Body Parameters
ExistUserTagRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| UserGroupId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "ef99b2cd-e880-480e-84b1-87693407fe82",
"UserGroupId": 2
}
application/xml, text/xml
Sample:
<ExistUserTagRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <UserGroupId>2</UserGroupId> <UserId>ef99b2cd-e880-480e-84b1-87693407fe82</UserId> </ExistUserTagRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ExistUserTagResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Exist | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Exist": true
}
application/xml, text/xml
Sample:
<ExistUserTagResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Exist>true</Exist> </ExistUserTagResponse>