POST api/tag/Save
Save. Processes this tag API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
The tag save data contract supplied with the request.
TagSaveDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Order |
The order value. |
integer |
None. |
| Name |
The name value. |
string |
None. |
| SelectedTagId |
The unique identifier of the related selected tag resource. |
integer |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"Order": 1,
"Name": "sample string 2",
"SelectedTagId": 3,
"Id": 4
}
Response Information
Resource Description
The response returned after the operation completes.
TagSaveDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Order |
The order value. |
integer |
None. |
| Name |
The name value. |
string |
None. |
| SelectedTagId |
The unique identifier of the related selected tag resource. |
integer |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Order": 1,
"Name": "sample string 2",
"SelectedTagId": 3,
"Id": 4
}