POST api/apptag/preparenew
Request Information
URI Parameters
None.
Body Parameters
Collection of KeyValue| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| Value | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Value": "sample string 2"
},
{
"Id": 1,
"Value": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfKeyValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
<KeyValue>
<Id>1</Id>
<Value>sample string 2</Value>
</KeyValue>
<KeyValue>
<Id>1</Id>
<Value>sample string 2</Value>
</KeyValue>
</ArrayOfKeyValue>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AppTag| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| Name | string |
None. |
|
| Abbreviation | string |
None. |
|
| Color | string |
None. |
|
| Icon | string |
None. |
|
| Description | string |
None. |
|
| Active | integer |
Required |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "10148e53-ebb8-4829-955a-c5d845f9368c",
"Name": "sample string 3",
"Abbreviation": "sample string 4",
"Color": "sample string 5",
"Icon": "sample string 6",
"Description": "sample string 7",
"Active": 8
}
application/xml, text/xml
Sample:
<AppTag xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models"> <Abbreviation>sample string 4</Abbreviation> <Active>8</Active> <Color>sample string 5</Color> <Description>sample string 7</Description> <Icon>sample string 6</Icon> <Id>1</Id> <Name>sample string 3</Name> <RowGuid>10148e53-ebb8-4829-955a-c5d845f9368c</RowGuid> </AppTag>