PUT V2/odata/ExtendedProperty({key})

Inserts or updates ExtendedProperty entity

Request Information

URI Parameters

NameDescriptionTypeAdditional information
key

not used on insert/update, can be always 0, set EntityId and ExtendedPropertyDefinitionId in body parameter to identify proper extended property

integer

Required

Body Parameters

QicsUnity.Api.Areas.V2.Models.ExtendedProperty
NameDescriptionTypeAdditional information
EntityId

Gets or sets the Id of the entity which is this setting value for

integer

64-bit signed integer

ExtendedPropertyId

Gets or sets the ExtendedPropertyId

integer

64-bit signed integer

ExtendedPropertyDefinitionId

Gets or sets the ExtendedPropertyDefinitionId

integer

Required

64-bit signed integer

Value

Gets or sets a value

string

Request Formats

application/json, text/json

Sample:
{
  "EntityId": "1",
  "ExtendedPropertyId": "2",
  "ExtendedPropertyDefinitionId": "3",
  "Value": "sample 4"
}

application/xml, text/xml

Sample:
<ExtendedProperty xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.V2.Models">
  <EntityId>1</EntityId>
  <ExtendedPropertyDefinitionId>3</ExtendedPropertyDefinitionId>
  <ExtendedPropertyId>2</ExtendedPropertyId>
  <Value>sample 4</Value>
</ExtendedProperty>

Response Information

Resource Description

QicsUnity.Api.Areas.V2.Models.ExtendedProperty
NameDescriptionTypeAdditional information
EntityId

Gets or sets the Id of the entity which is this setting value for

integer

64-bit signed integer

ExtendedPropertyId

Gets or sets the ExtendedPropertyId

integer

64-bit signed integer

ExtendedPropertyDefinitionId

Gets or sets the ExtendedPropertyDefinitionId

integer

Required

64-bit signed integer

Value

Gets or sets a value

string

Response Formats

application/json, text/json

Sample:
{
  "EntityId": "1",
  "ExtendedPropertyId": "2",
  "ExtendedPropertyDefinitionId": "3",
  "Value": "sample 4"
}

application/xml, text/xml

Sample:
<ExtendedProperty xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QicsUnity.Api.Areas.V2.Models">
  <EntityId>1</EntityId>
  <ExtendedPropertyDefinitionId>3</ExtendedPropertyDefinitionId>
  <ExtendedPropertyId>2</ExtendedPropertyId>
  <Value>sample 4</Value>
</ExtendedProperty>