Sign Customiser

Queue the established order email again for the manufacturer recipient configured by the Store. The operation accepts no request fields: a caller cannot choose or override any recipient.

POST/api/v3/orders/{order_id}/resend

Overview

Requires orders:write. Supply a unique Idempotency-Key for each logical resend; retrying the same body and key replays the 202 response without queuing another email. Distinct attempts are limited to two per API key per minute.

Authorisation

Bearer token required. Include it in theAuthorization header.

Required scope: orders:write

Path parameters

order_idstringpathrequired

The order id returned by the list operation.

Example: 123

Queue an order email resend
curl https://web.signcustomiser.com/api/v3/orders/123/resend \
  --request POST \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response
{
  "data": {
    "object": "order_email_resend",
    "order_id": 123,
    "status": "queued"
  },
  "links": {
    "self": "https://web.signcustomiser.com/api/v3/orders/123/resend",
    "documentation": "https://www.signcustomiser.com/help/api/"
  },
  "meta": {
    "api_version": "v3",
    "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
  }
}