GET v2.0/dzo/deal/{dealUid}/services

Получить список услуг сделки ДЗО.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
dealUid

Внешний идентификатор сделки.

string

Required

Body Parameters

None.

Response Information

Resource Description

Список услуг сделки ДЗО.

Collection of Korus.Eds.Api.Internal.Models.DzoDealService
NameDescriptionTypeAdditional information
Id

integer

None.

Code

string

None.

Name

string

None.

Amount

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "code": "sample string 2",
    "name": "sample string 3",
    "amount": 1.0
  },
  {
    "id": 1,
    "code": "sample string 2",
    "name": "sample string 3",
    "amount": 1.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfDzoDealService xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Korus.Eds.Api.Internal.Models">
  <DzoDealService>
    <Amount>1</Amount>
    <Code>sample string 2</Code>
    <Id>1</Id>
    <Name>sample string 3</Name>
  </DzoDealService>
  <DzoDealService>
    <Amount>1</Amount>
    <Code>sample string 2</Code>
    <Id>1</Id>
    <Name>sample string 3</Name>
  </DzoDealService>
</ArrayOfDzoDealService>