Skip to main content
POST
/
{id}
/
accept-buyout
Accept offer buyout
curl --request POST \
  --url https://api.sibipro.com/offers/{id}/accept-buyout \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "acceptedAt": "2024-01-20T12:00:00Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the offer to accept the buyout for

Response

Offer buyout accepted successfully

success
boolean
required

Whether the offer buyout was accepted successfully

Example:

true

acceptedAt
string<date-time>
required

Timestamp when the offer buyout was accepted

Example:

"2024-01-20T12:00:00Z"