GET Quotation/{id}
Gets a quotations by it's ID, represented as QuotationDto.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the quotations. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The quotations data.
QuotationDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CurrencyReferenceId | globally unique identifier |
None. |
|
| CurrencyReferenceDescription | string |
None. |
|
| CurrencyTargetId | globally unique identifier |
None. |
|
| CurrencyTargetDescriptions | string |
None. |
|
| Value | decimal number |
None. |
|
| RealCreatedDate | date |
None. |
|
| NetworkCreatedDate | date |
None. |
|
| NetworkDateFrom | date |
None. |
|
| RealDateFrom | date |
None. |
|
| TimeFromShortString | string |
None. |
|
| NetworkTimeZone | string |
None. |
|
| Editable | boolean |
None. |
|
| NetworkDateTo | date |
None. |
|
| RealDateTo | date |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "af0f3747-4a9c-4a47-b566-e53531895ffa",
"CurrencyReferenceId": "a85e58db-d4bf-4ba5-b4a7-485bd688e2a1",
"CurrencyReferenceDescription": "sample string 3",
"CurrencyTargetId": "de5febfe-990c-47c0-a097-dfd1cc36110e",
"CurrencyTargetDescriptions": "sample string 5",
"Value": 6.0,
"RealCreatedDate": "2025-10-29T05:30:24.8558361Z",
"NetworkCreatedDate": "2025-10-29T05:30:24.8558361Z",
"NetworkDateFrom": "2025-10-29T05:30:24.8558361Z",
"RealDateFrom": "2025-10-29T05:30:24.8558361Z",
"TimeFromShortString": "sample string 11",
"NetworkTimeZone": "sample string 12",
"Editable": true,
"NetworkDateTo": "2025-10-29T05:30:24.8558361Z",
"RealDateTo": "2025-10-29T05:30:24.8558361Z",
"Description": "sample string 14"
}
application/xml, text/xml
Sample:
<QuotationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model"> <CurrencyReferenceDescription>sample string 3</CurrencyReferenceDescription> <CurrencyReferenceId>a85e58db-d4bf-4ba5-b4a7-485bd688e2a1</CurrencyReferenceId> <CurrencyTargetDescriptions>sample string 5</CurrencyTargetDescriptions> <CurrencyTargetId>de5febfe-990c-47c0-a097-dfd1cc36110e</CurrencyTargetId> <Description>sample string 14</Description> <Editable>true</Editable> <Id>af0f3747-4a9c-4a47-b566-e53531895ffa</Id> <NetworkCreatedDate>2025-10-29T05:30:24.8558361Z</NetworkCreatedDate> <NetworkDateFrom>2025-10-29T05:30:24.8558361Z</NetworkDateFrom> <NetworkDateTo>2025-10-29T05:30:24.8558361Z</NetworkDateTo> <NetworkTimeZone>sample string 12</NetworkTimeZone> <RealCreatedDate>2025-10-29T05:30:24.8558361Z</RealCreatedDate> <RealDateFrom>2025-10-29T05:30:24.8558361Z</RealDateFrom> <RealDateTo>2025-10-29T05:30:24.8558361Z</RealDateTo> <TimeFromShortString>sample string 11</TimeFromShortString> <Value>6</Value> </QuotationDto>