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": "e8112399-f3b4-4eca-aeb5-d6ffd226641e",
"CurrencyReferenceId": "bdf45826-2c8e-44b5-8529-6a3758da42c1",
"CurrencyReferenceDescription": "sample string 3",
"CurrencyTargetId": "6c53092e-8823-48ca-b5c8-8d9e4eb67966",
"CurrencyTargetDescriptions": "sample string 5",
"Value": 6.0,
"RealCreatedDate": "2026-04-27T21:35:03.0741745Z",
"NetworkCreatedDate": "2026-04-27T21:35:03.0741745Z",
"NetworkDateFrom": "2026-04-27T21:35:03.0741745Z",
"RealDateFrom": "2026-04-27T21:35:03.0741745Z",
"TimeFromShortString": "sample string 11",
"NetworkTimeZone": "sample string 12",
"Editable": true,
"NetworkDateTo": "2026-04-27T21:35:03.0741745Z",
"RealDateTo": "2026-04-27T21:35:03.0741745Z",
"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>bdf45826-2c8e-44b5-8529-6a3758da42c1</CurrencyReferenceId> <CurrencyTargetDescriptions>sample string 5</CurrencyTargetDescriptions> <CurrencyTargetId>6c53092e-8823-48ca-b5c8-8d9e4eb67966</CurrencyTargetId> <Description>sample string 14</Description> <Editable>true</Editable> <Id>e8112399-f3b4-4eca-aeb5-d6ffd226641e</Id> <NetworkCreatedDate>2026-04-27T21:35:03.0741745Z</NetworkCreatedDate> <NetworkDateFrom>2026-04-27T21:35:03.0741745Z</NetworkDateFrom> <NetworkDateTo>2026-04-27T21:35:03.0741745Z</NetworkDateTo> <NetworkTimeZone>sample string 12</NetworkTimeZone> <RealCreatedDate>2026-04-27T21:35:03.0741745Z</RealCreatedDate> <RealDateFrom>2026-04-27T21:35:03.0741745Z</RealDateFrom> <RealDateTo>2026-04-27T21:35:03.0741745Z</RealDateTo> <TimeFromShortString>sample string 11</TimeFromShortString> <Value>6</Value> </QuotationDto>