GET Quotation/{id}

Gets a quotations by it's ID, represented as QuotationDto.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the quotations.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The quotations data.

QuotationDto
NameDescriptionTypeAdditional 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": "10bde690-9768-4b6c-b78d-de49086d0598",
  "CurrencyReferenceId": "8366f43a-c197-46c9-8f7c-d3a0f73fc727",
  "CurrencyReferenceDescription": "sample string 3",
  "CurrencyTargetId": "376b919f-2713-4645-aa8f-ba6717b12d7d",
  "CurrencyTargetDescriptions": "sample string 5",
  "Value": 6.0,
  "RealCreatedDate": "2025-04-25T16:22:35.3236915Z",
  "NetworkCreatedDate": "2025-04-25T16:22:35.3236915Z",
  "NetworkDateFrom": "2025-04-25T16:22:35.3236915Z",
  "RealDateFrom": "2025-04-25T16:22:35.3236915Z",
  "TimeFromShortString": "sample string 11",
  "NetworkTimeZone": "sample string 12",
  "Editable": true,
  "NetworkDateTo": "2025-04-25T16:22:35.3236915Z",
  "RealDateTo": "2025-04-25T16:22:35.3236915Z",
  "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>8366f43a-c197-46c9-8f7c-d3a0f73fc727</CurrencyReferenceId>
  <CurrencyTargetDescriptions>sample string 5</CurrencyTargetDescriptions>
  <CurrencyTargetId>376b919f-2713-4645-aa8f-ba6717b12d7d</CurrencyTargetId>
  <Description>sample string 14</Description>
  <Editable>true</Editable>
  <Id>10bde690-9768-4b6c-b78d-de49086d0598</Id>
  <NetworkCreatedDate>2025-04-25T16:22:35.3236915Z</NetworkCreatedDate>
  <NetworkDateFrom>2025-04-25T16:22:35.3236915Z</NetworkDateFrom>
  <NetworkDateTo>2025-04-25T16:22:35.3236915Z</NetworkDateTo>
  <NetworkTimeZone>sample string 12</NetworkTimeZone>
  <RealCreatedDate>2025-04-25T16:22:35.3236915Z</RealCreatedDate>
  <RealDateFrom>2025-04-25T16:22:35.3236915Z</RealDateFrom>
  <RealDateTo>2025-04-25T16:22:35.3236915Z</RealDateTo>
  <TimeFromShortString>sample string 11</TimeFromShortString>
  <Value>6</Value>
</QuotationDto>