GET v2.0/dzo/deal/{dealUid}
Получить данные сделки ДЗО.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
dealUid |
Внешний идентификатор сделки. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Данные сделки ДЗО.
Korus.Eds.Api.Internal.Models.DzoDealName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
DealType | Korus.Eds.Core.DzoDealType |
None. |
|
DealUid | string |
None. |
|
ExternalClientUid | string |
None. |
|
AgreementId | integer |
None. |
|
Status | Korus.Eds.Core.DzoDealState |
None. |
|
Amount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{ "id": 1, "dealType": 1, "dealUid": "sample string 2", "externalClientUid": "sample string 3", "agreementId": 1, "status": 0, "amount": 1.0 }
application/xml, text/xml
Sample:
<DzoDeal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Korus.Eds.Api.Internal.Models"> <AgreementId>1</AgreementId> <Amount>1</Amount> <DealType>Bundle</DealType> <DealUid>sample string 2</DealUid> <ExternalClientUid>sample string 3</ExternalClientUid> <Id>1</Id> <Status>New</Status> </DzoDeal>