Skip to main content
POST
/
{id}
/
accept
Accept offer
curl --request POST \
  --url https://api.sibipro.com/offers/{id}/accept \
  --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

Response

Offer accepted successfully

success
boolean
required

Whether the offer was accepted successfully

Example:

true

acceptedAt
string<date-time>
required

Timestamp when the offer was accepted

Example:

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