Skip to main content
POST
/
v1
/
offers
/
{id}
/
extend
Extend an offer
curl --request POST \
  --url https://api.plane.com/v1/offers/{id}/extend \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "expires": "<string>"
}
'
Extend a sent or expired offer by setting a future expiration timestamp. Expired offers return to sent when the new expiration is accepted. Use an Idempotency-Key header when retrying extend requests. See Idempotency.

Parameters

id
string
required
ID of the offer.
expires
string
required
New offer expiration timestamp.

Returns

Returns the updated Offer object.