POST api/CustomerTag/ExistUserTag
Request Information
URI Parameters
None.
Body Parameters
ExistUserTagRequestName | Description | Type | Additional information |
---|---|---|---|
UserId | globally unique identifier |
None. |
|
UserGroupId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserId": "dfef9ecc-edb3-49f8-ba14-660c66cf8a64", "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>dfef9ecc-edb3-49f8-ba14-660c66cf8a64</UserId> </ExistUserTagRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ExistUserTagResponseName | 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>