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": "41fcd086-ca65-4cb0-aa14-9118cccb5a68", "AuctionId": "b3c6a638-8bff-4735-8f2c-c8856a60a315", "RequestedBidAmount": 3.0, "ActualBidAmount": 1.0, "RequestedBidMinimumLimit": 1.0, "BidRequestedDate": "2024-12-07T03:05:58.3545608+02:00", "BidProcessedDate": "2024-12-07T03:05:58.3545608+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>b3c6a638-8bff-4735-8f2c-c8856a60a315</AuctionId> <BidProcessedDate>2024-12-07T03:05:58.3545608+02:00</BidProcessedDate> <BidRequestedDate>2024-12-07T03:05:58.3545608+02:00</BidRequestedDate> <FailureReason>NotSet</FailureReason> <Id>41fcd086-ca65-4cb0-aa14-9118cccb5a68</Id> <IsRequestBeingProcessed>true</IsRequestBeingProcessed> <RequestedBidAmount>3</RequestedBidAmount> <RequestedBidMinimumLimit>1</RequestedBidMinimumLimit> <StatusCode>Pending</StatusCode> </Payload> </ApiResultBid>