POST api/tag/InsertTag
Request Information
URI Parameters
None.
Body Parameters
Tag| Name | Description | Type | Additional information |
|---|---|---|---|
| TagId | integer |
None. |
|
| TagDesc | string |
None. |
|
| ParameterId | integer |
None. |
|
| IsActive | boolean |
None. |
|
| CreatorUserId | string |
String length: inclusive between 0 and 10 |
|
| LastModifierUserId | string |
String length: inclusive between 0 and 10 |
|
| CreationDate | date |
None. |
|
| LastModificationDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"TagId": 1,
"TagDesc": "sample string 2",
"ParameterId": 3,
"IsActive": true,
"CreatorUserId": "sample string 5",
"LastModifierUserId": "sample string 6",
"CreationDate": "2025-12-09T18:43:59.1886808-08:00",
"LastModificationDate": "2025-12-09T18:43:59.1886808-08:00"
}
application/xml, text/xml
Sample:
<Tag xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AMS.Models"> <CreationDate>2025-12-09T18:43:59.1886808-08:00</CreationDate> <CreatorUserId>sample string 5</CreatorUserId> <IsActive>true</IsActive> <LastModificationDate>2025-12-09T18:43:59.1886808-08:00</LastModificationDate> <LastModifierUserId>sample string 6</LastModifierUserId> <ParameterId>3</ParameterId> <TagDesc>sample string 2</TagDesc> <TagId>1</TagId> </Tag>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Results| Name | Description | Type | Additional information |
|---|---|---|---|
| OBJETO | Object |
None. |
|
| MENSAJE | string |
None. |
|
| STATUS | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"OBJETO": {},
"MENSAJE": "sample string 2",
"STATUS": "sample string 3"
}
application/xml, text/xml
Sample:
<Results xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AMS.Models"> <MENSAJE>sample string 2</MENSAJE> <OBJETO /> <STATUS>sample string 3</STATUS> </Results>