Skip to content

Create a reprint order

Ordering a reprint via the API is comparable to a simple order. The only difference is that the link to the original order must also be added via an action. You can reference the original order either by using its internal ID or your own external ID.

Request Body

json
{
  "actions": [
    {
      "type": "reprint",
      "source": "@TCS-5442223218"
    }
  ],
  "externalId": "YOW-7792796022",
  "shipping": "STANDARD",
  "recipient": {
    "name": "Alex Johnson",
    "company": "Johnson Enterprises",
    "address1": "123 Main Street",
    "address2": "Suite 100",
    "city": "San Francisco",
    "stateCode": "CA",
    "stateName": "California",
    "countryCode": "US",
    "countryName": "United States",
    "zip": "94102",
    "phone": "555-123-4567",
    "email": "alex.johnson@example.com",
    "taxNumber": "654321987"
  },
  "orderItems": [
    {
      "externalId": "PAY-4627172881",
      "quantity": 3,
      "name": "Heart-Shaped Mug",
      "retailPrice": "19.9",
      "variantId": "590f1af7-75f6-46c8-bab3-60b109a66371",
      "placements": [
        {
          "type": "front",
          "technique": "direct_print",
          "layers": [
            {
              "url": "https://www.example.org/example.pdf",
              "type": "file",
              "position": {
                "top": 0,
                "left": 0,
                "width": 218,
                "height": 98.5
              }
            }
          ],
          "placement_options": [
            {
              "name": "unlimited_color",
              "value": true
            }
          ]
        }
      ]
    }
  ]
}

Response data

json

{
  "@context": "/api/contexts/Order",
  "@id": "/api/orders/018f80ad-7ce4-71ef-a71a-146e3b7e16f7",
  "@type": "Order",
  "id": "018f80ad-7ce4-71ef-a71a-146e3b7e16f7",
  "externalId": "YOW-7792796022",
  "shipping": "STANDARD",
  "status": "draft",
  "createdAt": "2024-05-16T09:13:24+00:00",
  "updatedAt": "2024-05-16T09:13:24+00:00",
  "recipient": {
    "name": "Alex Johnson",
    "company": "Johnson Enterprises",
    "address1": "123 Main Street",
    "address2": "Suite 100",
    "city": "city",
    "stateCode": "CA",
    "stateName": "California",
    "countryCode": "US",
    "countryName": "United States",
    "zip": "94102",
    "phone": "555-123-4567",
    "email": "alex.johnson@example.com",
    "taxNumber": "654321987"
  },
  "orderItems": [
    {
      "@id": "/api/orders/018f80ad-7ce4-71ef-a71a-146e3b7e16f7/order_item/018f80ad-7ce4-71ef-a71a-146e3b8dc05f",
      "@type": "OrderItem",
      "id": "590f1af7-75f6-46c8-bab3-60b109a66371",
      "externalId": "PAY-4627172881",
      "quantity": 3,
      "name": "Heart-Shaped Mug",
      "retailPrice": "19.9",
      "variantId": "0587b207-d841-4ae4-824d-71b56d3db67b",
      "placements": [
        {
          "@type": "Placement",
          "@id": "/api/.well-known/genid/c6e37013c73255ab175f",
          "type": "front",
          "technique": "direct_print",
          "layers": [
            {
              "@type": "Layer",
              "@id": "/api/.well-known/genid/988aa582786896677f20",
              "type": "file",
              "url": "https://www.example.org/example.pdf",
              "layerOptions": [],
              "position": {
                "@type": "Position",
                "@id": "/api/.well-known/genid/30e5cf80c6147b49846d",
                "width": 218,
                "height": 98.5,
                "top": 0,
                "left": 0
              }
            }
          ],
          "placementOptions": []
        }
      ]
    }
  ],
  "associations": [
    {
      "type": "reprint",
      "createdAt": "2024-12-11T09:31:34+00:00",
      "source": {
        "@id": "\/api\/orders\/01920e66-e717-7f1a-9223-1911cd94d198",
        "@type": "Order",
        "id": "01920e66-e717-7f1a-9223-1911cd94d198",
        "externalId": "TCS-5442223218"
      },
      "linked": [
        {
          "@id": "/api/orders/018f80ad-7ce4-71ef-a71a-146e3b7e16f7",
          "@type": "Order",
          "id": "018f80ad-7ce4-71ef-a71a-146e3b7e16f7",
          "externalId": "YOW-7792796022"
        }
      ]
    }
  ]
}