POST api/apptag2appentity/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
AppTag2AppEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| AppTagId | integer |
Required |
|
| AppEntityId | integer |
Required |
|
| AppEntityRefId | integer |
Required |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "3fe8e22d-e966-4142-ae8e-8efbd42e9d75",
"AppTagId": 3,
"AppEntityId": 4,
"AppEntityRefId": 5
}
application/xml, text/xml
Sample:
<AppTag2AppEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models"> <AppEntityId>4</AppEntityId> <AppEntityRefId>5</AppEntityRefId> <AppTagId>3</AppTagId> <Id>1</Id> <RowGuid>3fe8e22d-e966-4142-ae8e-8efbd42e9d75</RowGuid> </AppTag2AppEntity>