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": "8c07ed51-9f67-46c2-bffb-96cd006b0722", "AuctionId": "f565a13d-8ad9-4d90-80b5-d2496cd869a3", "RequestedBidAmount": 3.0, "ActualBidAmount": 1.0, "RequestedBidMinimumLimit": 1.0, "BidRequestedDate": "2024-12-17T02:25:25.3006592+02:00", "BidProcessedDate": "2024-12-17T02:25:25.3006592+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>f565a13d-8ad9-4d90-80b5-d2496cd869a3</AuctionId> <BidProcessedDate>2024-12-17T02:25:25.3006592+02:00</BidProcessedDate> <BidRequestedDate>2024-12-17T02:25:25.3006592+02:00</BidRequestedDate> <FailureReason>NotSet</FailureReason> <Id>8c07ed51-9f67-46c2-bffb-96cd006b0722</Id> <IsRequestBeingProcessed>true</IsRequestBeingProcessed> <RequestedBidAmount>3</RequestedBidAmount> <RequestedBidMinimumLimit>1</RequestedBidMinimumLimit> <StatusCode>Pending</StatusCode> </Payload> </ApiResultBid>