POST api/CustomerTag/ExistUserTag

Request Information

URI Parameters

None.

Body Parameters

ExistUserTagRequest
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

UserGroupId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "98d7cebf-eb6c-42c3-84b7-3a8bb5808513",
  "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>98d7cebf-eb6c-42c3-84b7-3a8bb5808513</UserId>
</ExistUserTagRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ExistUserTagResponse
NameDescriptionTypeAdditional 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>