GET api/v1/bid/{id}
Get the Bid
Requires authorization!
Requires scope BidsRead
Response Codes
200
– Successfully fetched the Bid400
– No Bid id specified401
– User is not Authorized403
– Not allowed to get the Bid, because the bid is not owned by current user404
– Bid with specified ID is not found
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Bid identificator |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Get the Bid
Bid if it was found, null otherwise
Name | Description | Type | Additional information |
---|---|---|---|
Payload |
The payload of the response. Type depends on the API request. |
BidSummary |
None. |
Success |
Indicates if the request was successfull or not.
|
boolean |
Required |
Errors |
Error(s) accociated with the API request. |
Collection of ApiError |
None. |
Response Formats
application/json, text/json
Sample:
{ "Payload": { "Id": "8ba23835-4cd9-4f76-a45e-dcc499035205", "AuctionId": "536b736c-7179-4006-91af-75740668dbbf", "RequestedBidAmount": 3.0, "ActualBidAmount": 1.0, "RequestedBidMinimumLimit": 1.0, "BidRequestedDate": "2025-02-20T22:30:48.2279492+02:00", "BidProcessedDate": "2025-02-20T22:30:48.2279492+02:00", "IsRequestBeingProcessed": true, "StatusCode": 0, "FailureReason": 0 }, "Success": true, "Errors": [ { "Code": 1, "Message": "sample string-2", "Details": "sample string-3" }, { "Code": 1, "Message": "sample string-2", "Details": "sample string-3" } ] }
application/xml, text/xml
Sample:
<ApiResultBid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sobralaen.Api.Models"> <Errors> <ApiError> <Code>1</Code> <Details>sample string-3</Details> <Message>sample string-2</Message> </ApiError> <ApiError> <Code>1</Code> <Details>sample string-3</Details> <Message>sample string-2</Message> </ApiError> </Errors> <Success>true</Success> <Payload> <ActualBidAmount>1</ActualBidAmount> <AuctionId>536b736c-7179-4006-91af-75740668dbbf</AuctionId> <BidProcessedDate>2025-02-20T22:30:48.2279492+02:00</BidProcessedDate> <BidRequestedDate>2025-02-20T22:30:48.2279492+02:00</BidRequestedDate> <FailureReason>NotSet</FailureReason> <Id>8ba23835-4cd9-4f76-a45e-dcc499035205</Id> <IsRequestBeingProcessed>true</IsRequestBeingProcessed> <RequestedBidAmount>3</RequestedBidAmount> <RequestedBidMinimumLimit>1</RequestedBidMinimumLimit> <StatusCode>Pending</StatusCode> </Payload> </ApiResultBid>