Zum Hauptinhalt springen
POST
/
api
/
offers
/
{id}
/
accept
Accept an offer manually
curl --request POST \
  --url https://coreapi.io/api/offers/{id}/accept \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form acceptedAt=2023-11-07T05:31:56Z \
  --form file='@example-file'
{
  "signedAt": "2023-11-07T05:31:56Z"
}

Autorisierungen

Authorization
string
header
erforderlich

API token of the organisation. Send it as Authorization: Bearer api_... The token is bound to exactly one organisation.

Pfadparameter

id
string<ulid>
erforderlich

Offer ID (ULID).

Body

multipart/form-data
acceptedAt
string<date-time>
erforderlich

Acceptance timestamp as an ISO-8601 instant, e.g. 2026-04-01T00:00:00Z.

file
file

Optional signed PDF (max 20 MB).

Antwort

The acceptance outcome.

status
enum<string>
erforderlich
Verfügbare Optionen:
open,
signing,
awaiting_invoice_details,
signed,
archived
signedAt
string<date-time> | null