curl --request POST \
--url https://api.sibipro.com/offers/{id}/cancel \
--header 'Authorization: Bearer <token>'{
"offerId": "offer-123",
"status": "CANCELED",
"canceledAt": "2024-01-20T12:00:00Z"
}Cancels an offer by its ID. The offer must be in a cancelable state.
curl --request POST \
--url https://api.sibipro.com/offers/{id}/cancel \
--header 'Authorization: Bearer <token>'{
"offerId": "offer-123",
"status": "CANCELED",
"canceledAt": "2024-01-20T12:00:00Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the offer to cancel