POST api/CustomerTag/UpdateTag
Request Information
URI Parameters
None.
Body Parameters
UpdateTagRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Type | string |
None. |
|
| Description | string |
None. |
|
| Limit | integer |
None. |
|
| ModifiedUser | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Type": "sample string 2",
"Description": "sample string 3",
"Limit": 1,
"ModifiedUser": "sample string 4"
}
application/xml, text/xml
Sample:
<UpdateTagRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <Description>sample string 3</Description> <Id>1</Id> <Limit>1</Limit> <ModifiedUser>sample string 4</ModifiedUser> <Type>sample string 2</Type> </UpdateTagRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UpdateTagResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<UpdateTagResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Message>sample string 2</Message> <Success>true</Success> </UpdateTagResponse>