How external orders work

Unleash your creativity! Dive into our gfx editor to create your designs. Here, you can customize and personalize your designs based on advanced rules by configuring templates with endless options.

external orders.png

Ready to share your masterpiece? Our designs seamlessly integrate with your workflow. Once you’ve crafted your design in the gfx editor, simply utilize our API to send it directly. The API accepts data structured in a specific format, ensuring smooth integration with your existing systems.

{
   "id": "ORD-12345",
   "orderName": "Special Order", 
   "customerName": "Acme Corporation", 
   "items": [
     {
       "id": "ITM-1234",
       "designNumber": "8512881f-a6ba-435b-84e1-770ada54fed1",
       "size": "M"
     },
     {
       "id": "ITM-5678",
       "designNumber": "f7ebeffe-7b1c-4b22-a882-8a7c72fc2abb", 
       "size": "L"
     }
   ]
}

Watch your vision come to life! After sending your design via our API, our system will automatically generate the corresponding art files. These files will then be available for moderation within our platform. Here, you can review the final product and decide to either accept it for use or request further adjustments.

moderation.png

Got it! Once you’ve accepted the designs, we’ll seamlessly deliver them to your system. This includes sending the URLs for the finalized art files, ensuring they’re readily accessible within your workflow.

{
  "id": "ORD-12345", 
  "orderName": "Special Order", 
  "customerName": "Acme Corporation", 
  "items": [
    {
      "id": "ITM-1234",
      "designNumber": "8512881f-a6ba-435b-84e1-770ada54fed1", 
      "artFront": "<https://assets.gfxco.com/example-art-front-1.png>", 
      "artBack": "<https://assets.gfxco.com/example-art-back-1.png>", 
      "size": "M"
    },
    {
      "id": "ITM-5678",
      "designNumber": "f7ebeffe-7b1c-4b22-a882-8a7c72fc2abb",
      "artFront": "<https://assets.gfxco.com/example-art-front-2.png>", 
      "artBack": "<https://assets.gfxco.com/example-art-back-2.png>", 
      "size": "L"
     }
   ]
}

How to send an external order

This section walks you through the process of sending orders using our robust API. We’ll guide you through the steps involved in crafting your order data and transmitting it to our system for seamless processing.

Authentication

To ensure the security and integrity of your order data, our API utilizes an authentication mechanism for specific endpoints involved in order processing. This means you’ll need to provide valid credentials through the Headers before accessing these functionalities.

authentication.png

X-GFX-Topic: This header specifies the topic of the API request. It could be used to categorize the request type, valid values “orders/new”.

X-GFX-Shop-Domain: Used to identify the specific shop making the API request. It contains a unique domain name associated with the user’s account.

X-GFX-Access-Token: This access token is used for authentication purposes. This token allows the API to verify the identity of the user and ensures only authorized users can access specific functionalities.