PUT api/Data
Request Information
URI Parameters
None.
Body Parameters
DataRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Attributes | Collection of EntityAttribute |
Required |
|
| LogicalName | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": "074594f4-ddad-42f1-b0bc-edde40122160",
"Attributes": [
{
"Key": "sample string 1",
"Value": [
{},
{}
],
"AttributeType": {
"Type": "sample string 1",
"LogicalName": "sample string 2"
}
},
{
"Key": "sample string 1",
"Value": [
{},
{}
],
"AttributeType": {
"Type": "sample string 1",
"LogicalName": "sample string 2"
}
}
],
"LogicalName": "sample string 1"
}
application/xml, text/xml
Sample:
<DataRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Protech.UX.UX365API.Core.Models">
<Attributes>
<EntityAttribute>
<AttributeType>
<LogicalName>sample string 2</LogicalName>
<Type>sample string 1</Type>
</AttributeType>
<Key>sample string 1</Key>
<Value xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:anyType />
<d4p1:anyType />
</Value>
</EntityAttribute>
<EntityAttribute>
<AttributeType>
<LogicalName>sample string 2</LogicalName>
<Type>sample string 1</Type>
</AttributeType>
<Key>sample string 1</Key>
<Value xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:anyType />
<d4p1:anyType />
</Value>
</EntityAttribute>
</Attributes>
<Id>074594f4-ddad-42f1-b0bc-edde40122160</Id>
<LogicalName>sample string 1</LogicalName>
</DataRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.