GET v2.0/document/{id}/property
Получение списка дополнительных свойств документа.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Идентификатор документа. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Список дополнительных свойств документа.
Collection of Korus.Eds.Api.StringKeyValue| Name | Description | Type | Additional information |
|---|---|---|---|
| Key | string |
None. |
|
| Value | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"key": "sample string 1",
"value": "sample string 2"
},
{
"key": "sample string 1",
"value": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfStringKeyValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Korus.Eds.Api">
<StringKeyValue>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
</StringKeyValue>
<StringKeyValue>
<Key>sample string 1</Key>
<Value>sample string 2</Value>
</StringKeyValue>
</ArrayOfStringKeyValue>