Introduction

Welcome to our API for trading partners. This API allows for seamless integration of your systems with ours, allowing you to place orders, check the status of those orders, and receive shipping notifications through the use of webhooks. With this API, you will have real-time access to important information about your orders, enabling you to make more informed business decisions and improve your overall workflow.

The API is based on industry standards using REST in combination with the JSON data format and OAuth 2.0 for Authentication.

Key Features:

  • RESTful API with JSON responses
  • OAuth 2.0 authentication
  • Real-time order tracking
  • Webhook notifications
  • Comprehensive error handling

Important: The API doesn't support bulk updates. You can work only on one entity per request.

Getting Started

Trading partners of this API must have an established account before they can start using this API. Your contact will guide you through the onboarding process and provide you with the information listed below that will be required for a successful integration with this API.

Prerequisites

  • Valid trading partner account
  • Client ID and Secret (provided during onboarding)
  • Subscription keys for QA and Production environments
  • Assigned API scopes and permissions
Continue to Authentication

OAuth 2.0 Authentication

API clients will be authenticated using the OAuth 2.0 bearer schema. As a new client, work with your sales representative to define all operations you will need assigned to your account. These operations are also known as the 'scope'.

Once your credentials are created, you will be provided the scope(s), endpoint(s), client ID, shared secrets and subscription keys that will be used to retrieve a bearer token in both QA and Production.

OAuth 2.0 Flow Diagram

Authentication Flow

1. The application requests a JWT token from the Azure B2C URL by sending a request with its client_id, client_secret, scope and the grant_type (client_credentials).
2. The identity server authenticates the client and verifies that it has the necessary permissions to access the requested resources.
3. If the client is successfully authenticated, the authorization server issues a JWT token, which the application can use to access the protected resources on the service.
4. The application sends the subscription key and the JWT Token in the Authorization header of subsequent requests to the service's resource server and the server grants access if the token is valid.

Access Token Request Details

Environment URLs

Environment Token Endpoint
Development https://entappsloginnonprod.b2clogin.com/entappsloginnonprod.onmicrosoft.com/b2c_1_taylor_integrations/oauth2/v2.0/token
Production https://login.orders.com/e940936e-3b4d-4248-9fb6-1ba0ad45fef6/b2c_1_taylor_integrations/oauth2/v2.0/token

The service endpoints will by default support 120 requests per minute per client. Any request beyond that will return a 429 HTTP error.

Required Parameters

Parameter Description
grant_type The only supported flow (value) is 'client_credentials'
scope Environment specific URL with Application name Non Prod

https://entappsloginnonprod.onmicrosoft.com/BOSSCustomerApi/.default

Production

https://entappsloginprod.onmicrosoft.com/BOSSCustomerApi/.default

client_id Client Identifier (provided during onboarding process)
client_secret Secret/Password (provided during onboarding process)

Access Token Request Example

The examples below show how to request the JWT token. The property 'access_token' is what needs to be extracted from the JSON response. This value will be used in the Authorization header when calling the API endpoints.

The expiration of the tokens is defined in the field 'expires_in' (3600 = 1 hour). You will want to persist the token for its lifetime to make your application more performant.

cURL Example

curl --location --request POST 'https://entappsloginnonprod.b2clogin.com/entappsloginnonprod.onmicrosoft.com/b2c_1_taylor_integrations/oauth2/v2.0/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'scope=https://entappsloginnonprod.onmicrosoft.com/BOSSCustomerApi/.default' \
--data-urlencode 'client_id=your-client-id' \
--data-urlencode 'client_secret=your-client-secret'

Response Example

{
    "access_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6Ilg1ZVhrNHh5b2pORnVt...",
    "token_type": "Bearer",
    "not_before": 1729113649,
    "expires_in": 3600,
    "expires_on": 1729117249,
    "resource": "https://entappsloginnonprod.onmicrosoft.com/BOSSCustomerApi"
}

Subscription Key

The subscription key is provided during the onboarding process and is used in combination with the access_token when making a call against the API.

The cURL example below shows the use of the subscription key (Ocp-Apim-Subscription-Key) when performing a call against the API.

curl --location --request POST 'https://api-services-qa.taylorcorp.com/bossapi/v1/customers/1212/orders' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Ocp-Apim-Subscription-Key: your-subscription-key' \
--header 'Content-Type: application/json' \
--data-raw '{PAYLOAD}'

API Scopes

API scopes are used to define the level of access for specific resources. They serve as a security mechanism to restrict access to certain parts of the API. Scopes are defined in the Identity Service Provider and can be requested by the client during the authentication process.

Order Management

Operation: POST, PUT, DELETE (Submit, Update, Cancel Order)

Scope: order.create order.update order.cancel

Order Reading

Operation: GET (Read Order Details)

Scope: order.read

Product Information

Operation: GET (Read Product/SKU Information)

Scope: product.read sku.read

Organization Access

Operation: GET (Read Organization Details)

Scope: organization.read

Continue to API Methods

Orders API

The Orders API provides comprehensive order management capabilities including creation, retrieval, updates, deletion, and configuration-based ordering.

Create Order

POST /customers/{customer_id}/orders

Create a new order by customer ID with detailed product configurations and customer information.

Request Schema - Standard Orders

POST /customers/{customer_id}/orders

Create a new order with product configurations and customer details.

Request Body Schema

Parameter Name Type Description Constraints
array[TaylorCorp.BOS.Global.Models.ItemModel] An array of items for the order.
โ“˜ order_number required string The Inbound OrderNumber from a commerce platform. The default length max is 18. Example: Sample text
โ“˜ reference_order_number string The master OrderNumber for Subordinate order. Example: Sample text
โ“˜ date required string The date the order is placed. The max order number length is 18 and it cannot contain a "~" for Taylor Vend. format: date-time
Example: 2024-03-12T10:30:00Z
โ“˜ total required integer The total price of the order, two decimal places are assumed. format: int64
Example: 42
โ“˜ currency string The currency of the order. Example: Sample text
TaylorCorp.BOS.Global.Models.BillToModel Bill_to property
TaylorCorp.BOS.Global.Models.TaxModel Tax property
array[TaylorCorp.BOS.Global.Models.KitModel] An optional array of kits to indicate which items are kitted together. If an item is part of a kit, the shipping is added to the kit and not the items since they are all shipped to the same location.
โ“˜ po_number string The po number of the order. If not provided for Taylor Vend - the order_number will be used as the po_number. The max po size for Taylor Vend is 30. The default length max is 30. Example: Sample text
array[TaylorCorp.BOS.Global.Models.PaymentModel] An array of payment models. Currently only supporting 1 optional credit_card model per order.
TaylorCorp.BOS.Global.Models.ShippingChargeModel Shipping_charge property
โ“˜ conversation_id string A GUID that will be used for tracking this order across the systems . format: uuid
Example: 123e4567-e89b-12d3-a456-426614174000
โ“˜ status string Status of order such as change, new or delete Example: Sample text
array[TaylorCorp.BOS.Global.Models.OrderContactModel] The contact person information for the order

Get Order

GET /customers/{customer_id}/orders/{order_number}

Retrieve detailed information about a specific order by customer ID and order number.

Update Order

PATCH /customers/{customer_id}/orders/{order_number}

Update an existing order using JSON Patch operations. Allows partial updates to order details.

Delete Order

DELETE /customers/{customer_id}/orders/{order_number}

Cancel/delete an order by customer ID and order number.

Order with Configurations

POST /customers/{customer_id}/OrderConfigurations

Create orders with advanced product configurations. Specialized endpoint for complex manufacturing requirements.

Request Schema - Order Configurations

POST /customers/{customer_id}/OrderConfigurations

POST /customers/{customer_id}/orders

Create orders with advanced product configurations. User has option to provide complex manufacturing requirements with detailed configuration options.

User can use either Orders endpoint or OrderConfigurations endpoint to create orders.

Request Body Schema

Parameter Name Type Description Constraints
array[BOSS.Api.Models.Models.ItemConfigurationModel] An array of items for the order.
BOSS.Api.Models.Models.ShippingModel Shipping property
array[System.Collections.Generic.KeyValuePair_2__System.String__System.Private.CoreLib__Version_4.0.0.0__Culture_neutral__PublicKeyToken_7cec85d7bea7798e___System.String__System.Private.CoreLib__Version_4.0.0.0__Culture_neutral__PublicKeyToken_7cec85d7bea7798e__] Here is the Key Value Pair List, such as [{"Key":"order_acknowledgement","Value":"N"}]. For TComs purchase orders, these are the mapped keys: โ€˜order_acknowledgementโ€™, it should be like {"Key":"order_acknowledgement","Value":"N"}.
โ“˜ order_number string The Inbound OrderNumber from a commerce platform Example: Sample text
โ“˜ order_type string The order type of the order. It defaults regular unless specified. Example: Sample text
โ“˜ date string The date the order is placed. The max order number length is 18 and it cannot contain a "~" for Taylor Vend. format: date-time
Example: 2024-03-12T10:30:00Z
โ“˜ total integer The total price of the order, two decimal places are assumed. format: int64
Example: 42
โ“˜ currency string The currency of the order. Example: Sample text
BOSS.Api.Models.Models.BillToModel Bill_to property
BOSS.Api.Models.Models.TaxModel Tax property
array[BOSS.Api.Models.Models.KitModel] An optional array of kits to indicate which items are kitted together. If an item is part of a kit, the shipping is added to the kit and not the items since they are all shipped to the same location.
โ“˜ po_number string The po number of the order. If not provided for Taylor Vend - the order_number will be used as the po_number. The max po size for Taylor Vend is 30. Example: Sample text
array[BOSS.Api.Models.Models.PaymentModel] An array of payment models. Currently only supporting 1 optional credit_card model per order.
BOSS.Api.Models.Models.ShippingChargeModel Shipping_charge property
BOSS.Api.Models.Models.SubmittedByModel Submitted_by property
โ“˜ mfg_order_number string The manufacturer number for the order Example: Sample text
โ“˜ previous_order_number string The previous order number used by the manufacturer Example: Sample text
โ“˜ proofs_quantity string The number of proofs a csr has requested before the order is produced. Currently only on PO order. Example: Sample text
โ“˜ order_comments string Header level comments on the order for the Billing / internal Tcoms teams. Not used externally. Currently only on PO order. Example: Sample text
โ“˜ invoice_comments string Header level comments that will be printed on the invoice for the customer.Currently only on PO order. Example: Sample text
โ“˜ quote_reference string The reference number for a quoted purchase order. Currently only on PO order. Example: Sample text
โ“˜ quote_date string The date the quote for the purchase order was created. Currently only on PO order. format: date-time
Example: 2024-03-12T10:30:00Z
โ“˜ customer_buyer_number string The buyer number for the given order, tied to a name in TComs. Required for PO order. Example: Sample text
โ“˜ auto_release boolean A flag determining whether the order should auto-release. Currently only on PO order. Example: true
โ“˜ expected_ship_date string The expected ship date the last vendor in the order will have the product shipped to the consumer. Currently only on PO order. format: date-time
Example: 2024-03-12T10:30:00Z
โ“˜ bill_order_complete boolean Bill_order_complete property Example: true
array[BOSS.Api.Models.Models.AssetModel] Header level assets associated with the order. Currently only used for nowsource po orders
โ“˜ conversation_id string A GUID that will be used for tracking this order across the systems . format: uuid
Example: 123e4567-e89b-12d3-a456-426614174000
array[BOSS.Api.Models.Models.OrderContactModel] The contact person information for the order

Order Notification Webhooks

Our order notification is a subscription post back service that is designed to receive a notification update. To receive real time status updates on orders, the Taylor Integrations team will need to configure an endpoint (a.ka. webhook) to post to a URL specified by the customer (Trading Partner). This webhook can support various transport protocols and security models depending on the customer requirements. The specific requirements will need to be determined at integration time.

The diagram below illustrates how the Status Notifications will be transmitted to the customer endpoint. The expected HTTP status code is 200 OK. In the diagram the Ship Status is called out, however, the Order Notification follows the same path.

Supported Webhook Events:

  • OrderNotificationReceived - Triggered when an order is successfully received and validated
  • OrderNotificationShipped - Triggered when an order has been shipped with tracking information

Webhook Configuration

To receive webhooks, you need to:

  1. Provide a secure HTTPS endpoint during onboarding
  2. Implement webhook signature verification (recommended)
  3. Return HTTP 200 status codes for successful processing
  4. Handle retry logic for failed deliveries

Order Received Notification

POST https://{Client API endpoint}/webhooks

Sent when an order is successfully received, validated, and entered into our production system.

Request Body Schema - OrderNotificationReceived
Parameter Name Type Description & Example
โ€ข webhookType string
Type of webhook event being sent
Example: OrderNotificationReceived
โ€ข timestamp string (datetime)
ISO 8601 timestamp when the event occurred
Example: 2024-03-16T09:15:00.000Z
โ€ข eventId string
Unique identifier for this specific webhook event
Example: recv-12345-67890
โ€ข apiVersion string
Version of the webhook API format
Example: v1
object
Main payload containing order information
Example: Object with 12 properties
object
Technical metadata about webhook delivery
Example: Object with 4 properties
View Raw JSON Payload
{
  "webhookType": "OrderNotificationReceived",
  "timestamp": "2024-03-16T09:15:00.000Z",
  "eventId": "recv-12345-67890",
  "apiVersion": "v1",
  "data": {
    "orderNumber": "ORD-2024-001234",
    "customerId": "12345",
    "customerReference": "CUST-REF-789",
    "orderStatus": "Received",
    "orderReceivedDate": "2024-03-16T09:15:00.000Z",
    "estimatedCompletionDate": "2024-03-20T17:00:00.000Z",
    "orderDetails": {
      "priority": "Standard",
      "rushOrder": false,
      "proofRequired": true,
      "specialInstructions": "Please review artwork carefully before production"
    },
    "billingInformation": {
      "paymentMethod": "CreditCard",
      "paymentStatus": "Authorized",
      "billingAddress": {
        "name": "John Smith",
        "company": "ABC Company",
        "address1": "123 Main Street",
        "address2": "Suite 100",
        "city": "Minneapolis",
        "state": "MN",
        "postalCode": "55401",
        "country": "US"
      }
    },
    "shippingAddress": {
      "name": "John Smith",
      "company": "ABC Company",
      "address1": "123 Main Street",
      "address2": "Suite 100",
      "city": "Minneapolis",
      "state": "MN",
      "postalCode": "55401",
      "country": "US"
    },
    "items": [
      {
        "itemId": "ITEM-001",
        "sku": "BC-500-WHT",
        "productName": "Business Cards - Standard White",
        "quantity": 500,
        "unitPrice": 25.99,
        "totalPrice": 25.99,
        "configurations": {
          "size": "3.5x2",
          "paperType": "14pt Cardstock",
          "finish": "Matte",
          "sides": "Double-sided",
          "artwork": {
            "fileUrl": "https://artwork.yourcompany.com/files/artwork-12345.pdf",
            "fileName": "business-card-design.pdf",
            "fileSize": "2.4MB",
            "artworkStatus": "Pending Review"
          }
        }
      }
    ],
    "orderTotals": {
      "subtotal": 25.99,
      "tax": 2.08,
      "shipping": 7.95,
      "discount": 0,
      "total": 35.02,
      "currency": "USD"
    },
    "processingTimeline": {
      "proofingPhase": {
        "estimatedStart": "2024-03-16T14:00:00.000Z",
        "estimatedCompletion": "2024-03-17T12:00:00.000Z"
      },
      "productionPhase": {
        "estimatedStart": "2024-03-17T14:00:00.000Z",
        "estimatedCompletion": "2024-03-19T16:00:00.000Z"
      },
      "shippingPhase": {
        "estimatedStart": "2024-03-19T18:00:00.000Z",
        "estimatedDelivery": "2024-03-21T17:00:00.000Z"
      }
    }
  },
  "webhookMetadata": {
    "retryCount": 0,
    "webhookUrl": "https://your-endpoint.com/webhooks/order-notifications",
    "signature": "sha256=b4c3d2e1f0g9h8i7j6k5l4m3n2o1p0q9",
    "deliveryId": "delivery-uuid-67890"
  }
}

Order Shipped Notification

POST https://your-webhook-endpoint.com/webhooks

Sent when an order has been completed, packaged, and shipped with tracking information.

Request Body Schema - OrderNotificationShipped
Parameter Name Type Description & Example
โ€ข webhookType string
Type of webhook event being sent
Example: OrderNotificationShipped
โ€ข timestamp string (datetime)
ISO 8601 timestamp when the event occurred
Example: 2024-03-16T14:30:00.000Z
โ€ข eventId string
Unique identifier for this specific webhook event
Example: ship-12345-67890
โ€ข apiVersion string
Version of the webhook API format
Example: v1
object
Main payload containing order information
Example: Object with 8 properties
object
Technical metadata about webhook delivery
Example: Object with 4 properties
View Raw JSON Payload
{
  "webhookType": "OrderNotificationShipped",
  "timestamp": "2024-03-16T14:30:00.000Z",
  "eventId": "ship-12345-67890",
  "apiVersion": "v1",
  "data": {
    "orderNumber": "ORD-2024-001234",
    "customerId": "12345",
    "customerReference": "CUST-REF-789",
    "orderStatus": "Shipped",
    "shippingInformation": {
      "trackingNumber": "1Z999AA1234567890",
      "carrier": "UPS",
      "carrierService": "UPS Ground",
      "shippedDate": "2024-03-16T12:00:00.000Z",
      "estimatedDeliveryDate": "2024-03-18T17:00:00.000Z",
      "shippingAddress": {
        "name": "John Smith",
        "company": "ABC Company",
        "address1": "123 Main Street",
        "address2": "Suite 100",
        "city": "Minneapolis",
        "state": "MN",
        "postalCode": "55401",
        "country": "US"
      },
      "trackingUrl": "https://www.ups.com/track?tracknum=1Z999AA1234567890"
    },
    "items": [
      {
        "itemId": "ITEM-001",
        "sku": "BC-500-WHT",
        "productName": "Business Cards - Standard White",
        "quantity": 500,
        "unitPrice": 25.99,
        "totalPrice": 25.99,
        "specifications": {
          "size": "3.5x2",
          "paperType": "14pt Cardstock",
          "finish": "Matte",
          "sides": "Double-sided"
        }
      }
    ],
    "orderTotals": {
      "subtotal": 25.99,
      "tax": 2.08,
      "shipping": 7.95,
      "total": 35.02,
      "currency": "USD"
    },
    "manufacturingDetails": {
      "productionFacility": "Minneapolis Production Center",
      "productionDate": "2024-03-15T10:30:00.000Z",
      "qualityCheckPassed": true,
      "specialInstructions": "Rush processing requested"
    }
  },
  "webhookMetadata": {
    "retryCount": 0,
    "webhookUrl": "https://your-endpoint.com/webhooks/order-notifications",
    "signature": "sha256=a3b2c1d4e5f6g7h8i9j0k1l2m3n4o5p6",
    "deliveryId": "delivery-uuid-12345"
  }
}

Product Specifications

This section provides comprehensive information about product features, artwork requirements, and detailed specifications for various product types available through our API.

Section Contents:

  • Product Features and Samples
  • Artwork Submission Methods
  • Social Stationery Specifications
  • Office Supplies Specifications
  • Home & Office Product Specifications
  • Napkins & Coasters Specifications
  • Drinkware Product Specifications
  • Gifts Product Specifications
  • Pet Products Specifications
  • Decal Art Product Specifications
  • Wall Art Product Specifications
  • Signs and Graphics Product Specifications
  • Custom Product Configuration

Product Features and Samples

The Super Model Item Specification can be used for all product types, but each product may have small variations in options or configuration. This section lists all supported products and describes the specifications for each product in detail.

An item model on the order can have a child 'configuration' object that represents the product type the item is and contains all variable information required for manufacturing. If the item is not personalized and does not require configuration, this child configuration model will be left as null and the item will be processed as normal. Most personalized orders will use the super_model configuration. This configuration model contains a generic structure for a product with one or more parts, surfaces, and images.

Available Product Categories

Social Stationery

Flat note cards, invitations, announcements

Office Supplies

Post-It notes, cubes, lint sheet packs

Home & Office

Mousepads, notebooks, planners, stamps

Drinkware

Mugs, tumblers, glasses, water bottles

๐ŸŽ Gifts

Baby bibs, burp clothes, baby blankets

Napkins

Custom printed napkins with digital/foil options

Coasters

Custom printed coasters with digital printing

๐Ÿ–ผ๏ธ Wall Art

Acrylic, metal, foam board, poster wall art

๐Ÿชง Signs & Graphics

Yard signs, foam boards, magnets, table tents

๐Ÿณ๏ธ Banners

Durable, mesh, pennant, display, retractable banners

๐Ÿท๏ธ Decal Art

Window decals, wall decals, floor decals

๐Ÿพ Pet Products

Dog leashes, collars, beds, tags, bowls, mats, bandanas

Artwork Submission

There are two methods for passing in artwork via the Taylor BOSS API, either each surface is it's own defined asset (single page per asset) or there is one asset with define page numbers (multipage). The standard file format is a .pdf file, however, certain products may require different file types.

๐Ÿ“‹ Important Note

Please check with your Taylor Project Manager to confirm artwork specification for desired product types, as certain products may require different file formats or specifications.

Single Page Assets

Each surface is defined as its own asset with one page per asset. This method provides precise control over individual surfaces.

  • One asset per printing surface
  • Ideal for simple designs
  • Clear surface-to-asset mapping

Multipage Assets

One asset contains multiple pages with defined page numbers for each surface. Suitable for complex multi-surface products.

  • Single asset with multiple pages
  • Page number references for surfaces
  • Efficient for complex products

Social Stationery

Social stationery products include a variety of personalized items for events, announcements, and professional correspondence. Each product type has specific configuration requirements detailed below.

๐Ÿ“‹ Social Stationery Products

๐Ÿ“„ Flat Note Cards

Single or double-sided cards with kitting model

๐Ÿ“ Folded Notecards

Cards with horizontal/vertical fold options

โœ‰๏ธ Envelopes

Address positioning: Flap, Center, or Return

๐Ÿ’ผ Business Cards

Professional cards with digital print process

๐Ÿฝ๏ธ Menus

Restaurant menus with fold configuration

๐Ÿงพ Flyers

Promotional flyers with fold options

Flat Note Cards

Flat Note Cards print on one or two surface(s). You will only need to define the number of surfaces being printed on that card. If only one is printed, define surface 1, but add surface 2 if the back is printed as well.

Configuration Requirements
Kitting Model

When using the super model to send flat note cards, you will need to use a kitting model to include the envelopes with the cards. See the JSON sample for the specifics of the kitted model.

Print Process

While you will not need to define extrinsic fields, you will need to define the print_process. If you have multiple surfaces, "digital" must always be surface one.

Surface Configuration Guide
Surface Description Print Process Required
Surface 1 Front of the card digital โœ… Always required
Surface 2 Back of the card (if printed) digital โšช Optional
Sample JSON

Sample Image

Folded Notecards

Folded Cards print on one or two surface(s). You will only need to define the number of surfaces being printed on that card. If only one is printed, define surface 1, but add surface 2 if the back is printed as well.

Configuration Requirements
Kitting Model

When using the super model to send folded note cards, you will need to use a kitting model to include the envelopes with the cards. See the JSON sample for the specifics of the kitted model.

Extrinsic Field - Fold Direction

You will need to define an extrinsic field for the fold direction. This will be either "horizontal" or "vertical".

Print Process

You will need to define the print_process field. If you have multiple surfaces, "digital" must always be surface one.

Folded Cards Configuration Guide
Surface Description Print Process Fold Options Required
Surface 1 Front of the folded card digital horizontal or vertical โœ… Always required
Surface 2 Back of the card (if printed) digital Same as Surface 1 โšช Optional
Sample JSON

Sample Image

Envelopes

Envelopes print on one or two surface(s) as shown in the picture below. You will only need to define the number of surfaces being printed on that envelope. If only one side is printed, define surface 1, but add surface 2 if the back is printed as well. While you will define an extrinsic field for the position of the address, this will either be "Flap", "Center" or "Return". You will also need to define the print_process field. If you have multiple surfaces, "digital" must always be used for envelopes.

Configuration Requirements
Extrinsic Field - Address Position

You will need to define an extrinsic field for the address position. This will be either "Flap", "Center", or "Return".

Print Process

You will need to define the print_process field. If you have multiple surfaces, "digital" must always be used for envelopes.

Envelope Configuration Guide
Surface Description Print Process Address Position Required
Surface 1 Front of the envelope digital Flap, Center, or Return โœ… Always required
Surface 2 Back of the envelope (if printed) digital Same as Surface 1 โšช Optional
Sample JSON

Sample Image

Business Cards

Business Cards print on one or two surface(s) as shown in the picture below. You will only need to define the number of surfaces being printed on that business card. If only one side is printed, define surface 1, but add surface 2 if the back is printed as well. You will also need to define the print_process field. If you have multiple surfaces, "digital" must always be used for business cards.

Configuration Requirements
Print Process

You will need to define the print_process field. If you have multiple surfaces, "digital" must always be used for business cards.

Business Card Configuration Guide
Surface Description Print Process Required
Surface 1 Front of the business card digital โœ… Always required
Surface 2 Back of the business card (if printed) digital โšช Optional
Sample JSON

Sample Image

Menus print on one or two surface(s) as shown in the picture below. You will only need to define the number of surfaces being printed on that menu. If only one side is printed, define surface 1, but add surface 2 if the back is printed as well. You will define an extrinsic field for the fold, this will either be "horizontal" or "vertical". You will also need to define the print_process field. If you have multiple surfaces, "digital" must always be the surface one.

Configuration Requirements
Extrinsic Field - Fold Direction

You will need to define an extrinsic field for the fold direction. This will be either "horizontal" or "vertical".

Print Process

You will need to define the print_process field. If you have multiple surfaces, "digital" must always be surface one.

Menu Configuration Guide
Surface Description Print Process Fold Options Required
Surface 1 Front of the menu digital horizontal or vertical โœ… Always required
Surface 2 Back of the menu (if printed) digital Same as Surface 1 โšช Optional
Sample JSON

Sample Image

Flyers

Flyers print on one or two surface(s) as shown in the picture below. You will only need to define the number of surfaces being printed on that flyer. If only one side is printed, define surface 1, but add surface 2 if the back is printed as well. You will define an extrinsic field for the fold, this will either be "horizontal" or "vertical". You will also need to define the print_process field. If you have multiple surfaces, "digital" must always be the surface one.

Configuration Requirements
Extrinsic Field - Fold Direction

You will need to define an extrinsic field for the fold direction. This will be either "horizontal" or "vertical".

Print Process

You will need to define the print_process field. If you have multiple surfaces, "digital" must always be surface one.

Flyer Configuration Guide
Surface Description Print Process Fold Options Required
Surface 1 Front of the flyer digital horizontal or vertical โœ… Always required
Surface 2 Back of the flyer (if printed) digital Same as Surface 1 โšช Optional
Sample JSON

Sample Image

Office Supplies

Office supplies include essential business items and promotional products for workplace environments. Each product type has specific configuration requirements and supplier SKU specifications detailed below.

๐Ÿข Office Supplies Products

๐Ÿ“ Post-It Notes

Single surface, requires supplier SKU

๐ŸŽฒ Post-It Cube

Four surfaces with digital print process

๐Ÿงน Lint Sheets Pocket Pack

Custom printed, requires supplier SKU

Post-It Notes

Post-It Notes print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Post-It notes, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Super Model Configuration

Define only one surface and one area in the super model. No extrinsic fields required.

Post-It Notes Configuration Guide
Surface Description Print Process Supplier SKU Required
Surface 1 Front of the Post-It note digital โœ… Required for size/style โœ… Always required
Sample JSON

Sample Image

Post-It Cube

Post-It Cubes print on four surfaces as shown in the picture below. You will need to define the number of surfaces being printed on that cube. If only one side is printed, define surface 1, but add surface 2, surface 3, and surface 4 for all the other sides. You will also need to define the print_process field. If you have multiple surfaces, "digital" must always be the surface one.

Configuration Requirements
Print Process

You will need to define the print_process field. If you have multiple surfaces, "digital" must always be surface one.

Multi-Surface Configuration

Define up to four surfaces. Add surface 2, surface 3, and surface 4 for additional printed sides of the cube.

Post-It Cube Configuration Guide
Surface Description Print Process Required
Surface 1 First side of the cube digital โœ… Always required
Surface 2 Second side of the cube digital โšช Optional
Surface 3 Third side of the cube digital โšช Optional
Surface 4 Fourth side of the cube digital โšช Optional
Sample JSON

Sample Image

Custom Printed Lint Sheets Pocket Pack

Custom Printed Lint Sheets Pocket Pack print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Custom Printed Lint Sheets Pocket Packs, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Super Model Configuration

Define only one surface and one area in the super model. No extrinsic fields required.

Lint Sheets Pocket Pack Configuration Guide
Surface Description Print Process Supplier SKU Required
Surface 1 Front of the lint sheet pack digital โœ… Required for size/style โœ… Always required
Sample JSON

Sample Image

Need Assistance?

For detailed product specifications, artwork requirements, or configuration assistance, please contact your Taylor Project Manager or the integrations team.

Contact Integration Team

Home & Office

Home & Office products include essential items for personal and professional use. Each product type has specific configuration requirements and supplier SKU specifications detailed below.

๐Ÿ  Home & Office Products

๐Ÿ–ฑ๏ธ Mousepads

Single surface, requires supplier SKU

๐Ÿ“” Notebooks

Content & spiral color configuration

๐Ÿ“… Planners

Dated/undated with spiral options

๐Ÿ”– Self-Inking Stamps

Offset print process

๐Ÿ“† Self-Inking Daters

Offset print process

โŒ X-Stampers

Offset print process

Mousepads

Mousepads print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Mousepads, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Notebooks

Notebooks print on one or two surface(s) as shown in the picture below. You will only need to define the number of surfaces being printed on that notebook. If only one is printed, define surface 1, but add surface 2 if the back is printed as well. You will define an extrinsic field for the content of the notebook, this will either be "COLLEGE" or "BLANK", or "WIDE", or "CHECKLIST", "SKETCH", or "BULLET" or "RECIPE". The spiral color will also need to be added into the extrinsics field for "spiral" with either "BLK" for Black or "GLD" for Gold. You will also need to define the print_process field. If you have multiple surfaces, "digital" must always be the surface one.

Configuration Requirements
Extrinsic Fields

Content: "COLLEGE", "BLANK", "WIDE", "CHECKLIST", "SKETCH", "BULLET", or "RECIPE"

Spiral: "BLK" for Black or "GLD" for Gold

Print Process

If you have multiple surfaces, "digital" must always be surface one.

Sample JSON

Sample Image

Planners

Planners print on one or two surface(s) as shown in the picture below. You will only need to define the number of surfaces being printed on that planner. If only one side is printed, define surface 1, but add surface 2 if the back is printed as well. You will define an extrinsic field for the content of the notebook, this will either be "DATED" or "UNDATED". The spiral color will also need to be added into the extrinsics field for "spiral" with either "BLK" for Black or "GLD" for Gold. You will also need to define the print_process field. If you have multiple surfaces, "digital" must always be the surface one.

Configuration Requirements
Extrinsic Fields

Content: "DATED" or "UNDATED"

Spiral: "BLK" for Black or "GLD" for Gold

Print Process

If you have multiple surfaces, "digital" must always be surface one.

Sample JSON

Sample Image

Self-Inking Stamps

Self-Inking Stamps print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send stamps, you will not need to define extrinsic fields, but you will need to define the print_process field as "offset". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "offset".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Self-Inking Daters

Self-Inking daters print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send stamps, you will not need to define extrinsic fields, but you will need to define the print_process field as "offset". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "offset".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

X-Stampers

X-Stampers print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send X-Stampers, you will not need to define extrinsic fields, but you will need to define the print_process field as "offset". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "offset".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Napkins

Napkins

Napkins print on one surface as shown in the picture below. You will only need to define one surface and one area in this model. When using the super model to send napkins, you will not need to define extrinsic fields, but you will need to define the print_process field. Depending on the style of napkin being ordered, the print_process field will be either "digital" or "foil", which is decided based on the style of napkin, uncoined (no texture on edges), or coined (textured edge). You must also include the supplier sku, which will let Taylor know which color, size, and style you are ordering.

Configuration Requirements
Print Process

Uncoined napkins: "digital" only

Coined napkins: "digital" or "foil"

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which color, size, and style you are ordering.

Napkin Uncoined
Sample JSON

Sample Image

Napkin Coined
Sample JSON

Sample Image

Coasters

Coasters

Coasters print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send coasters, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Drinkware

Drinkware products include a comprehensive range of customizable drinking vessels for various occasions and purposes. All drinkware items follow similar configuration patterns with digital print processes and supplier SKU requirements.

๐Ÿฅค Drinkware Products

Mugs

Mugs print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send mugs, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering. The following substrates are available for mugs: ceramic, inner/handle mug, 2 tone mugs, white mugs, bone china, espresso, jumbo, color changing, and Hilo. All substrates follow the same model.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Available Substrates

Ceramic, inner/handle mug, 2 tone mugs, white mugs, bone china, espresso, jumbo, color changing, and Hilo. All substrates follow the same model.

Sample JSON

Sample Image

Travel Mugs

Travel Mugs print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send travel mugs, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Flasks

Flasks print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send flasks, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Tumblers

Tumblers print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send tumblers, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Water Bottles

Water Bottles print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send water bottles, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Wine Glasses

Wine Glasses print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Wine Glasses, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Pilsner Glasses

Pilsner Glasses print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Pilsner Glasses, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Mixing Glasses

Mixing Glasses print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Mixing Glasses, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Beverage Glasses

Beverage Glasses print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Beverage Glasses, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Shot Glasses

Shot Glasses print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Shot Glasses, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Whiskey Glasses

Whiskey Glasses print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Whiskey Glasses, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Sunsplash Tumblers

Sunsplash Tumblers print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Sunsplash Tumblers, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Wine Charms

Wine Charms print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Wine Charms, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Can Cooler

Can Coolers print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send can coolers, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Sandstone Coaster

Sand Stone Coasters print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Sand Stone Coasters, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

You will need to define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Drinkware Configuration Summary
Common Requirements for All Drinkware

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

Need Assistance?

For detailed product specifications, artwork requirements, or configuration assistance, please contact your Taylor Project Manager or the integrations team.

Contact Integration Team

๐ŸŽ Gifts

Gifts include a comprehensive collection of baby products, wrapping paper, and specialty items perfect for personalized gifting. This expanded category encompasses travel accessories, home decor, office supplies, and entertainment products, all following consistent configuration patterns with digital print processes and supplier SKU requirements suitable for gift-giving occasions.

๐ŸŽ Gifts Collection

๐Ÿ‘ถ Baby Products
๐ŸŽ€ Gift Wrapping
๐Ÿงณ Travel & Tech
๐Ÿ  Home & Kitchen
โšฝ Sports & Wellness
๐Ÿ‘” Fashion & Automotive
๐Ÿ’ผ Office & Entertainment

Baby Bibs

Baby Bibs print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Baby bibs, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for optimal baby-safe printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Burp Clothes

Burp Clothes print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Burp Clothes, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for optimal absorbent material printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Baby Blankets

Baby Blankets print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Baby Blankets, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for soft, cozy blanket printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Standard Roll Wrapping Paper

Standard Roll Wrapping Paper print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send standard roll wrapping paper, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for standard roll wrapping paper printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Reversible Wrapping Paper Sheets

Reversible Wrapping Paper Sheets print on one or two surface(s), as shown in the picture below. You will only need to define the number of surfaces being printed on that reversible wrapping paper sheet. If only one side is printed, define surface 1, but add surface 2 if the back is printed as well. You will also need to define the print_process field. If you have multiple surfaces, "digital" must always be surface one.

Configuration Requirements
Variable Surface Configuration

Define one or two surfaces based on printing requirements. Single-side printing uses surface 1 only.

Print Process Priority

For multiple surfaces, "digital" must always be assigned to surface 1.

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Dual-Side Printing Option

Add surface 2 definition if back side printing is required for reversible design.

Sample JSON

Sample Image

Luggage Wrap

Luggage Wrap prints on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Luggage Wraps, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for luggage wrap printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Carmats

Carmats print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Carmats, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for carmat printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Laptop Bags

Laptop Bags print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Laptop Bags, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for laptop bag printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Hitch Cover Receiver

Hitch Cover Receivers print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Hitch Cover Receivers, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for hitch cover receiver printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

License Plate Frame

License Plate Frames print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send License Plate Frames, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for license plate frame printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Ceramic Tiles

Ceramic Tiles print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Ceramic Tiles, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". The supplier sku which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for ceramic tile printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Wood Frames

Wood Frames do not print, so you will only need to send the sku.

Configuration Requirements
SKU Only Configuration

Wood Frames do not require printing configuration. Only send the supplier SKU to specify the frame type and size.

No Print Process Required

No print_process field or surface definitions needed for wood frames.

Sample JSON

Sample Image

Ceramic Ornaments

Ceramic Ornaments print on one surface as shown below in the picture, you will only need to define one surface and one area in the super model. When using the super model to send Ceramic Ornaments, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for ceramic ornament printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Jewelry Boxes

Jewelry Boxes print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Jewelry Boxes, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for jewelry box printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Trucker Hats

Trucker Hats print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send trucker hats, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for trucker hat printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Neckties

Neckties print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send neckties, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for necktie printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Kitchen Towel

Kitchen Towels print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send kitchen towels, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for kitchen towel printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Glass Cutting Boards

Glass Cutting Boards print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send glass cutting boards, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for glass cutting board printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Serving Trays

Serving Trays print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Serving Trays, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for serving tray printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Aprons

Aprons print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send aprons, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for apron printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Bathmats

Bathmats print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send bathmats, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for bathmat printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Golf Towel

Golf Towels print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send golf towels, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for golf towel printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Basketball Mini Hoop

Basketball Mini Hoops print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send basketball mini hoops, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for basketball mini hoop printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Stadium Seat Cushions

Stadium Seat Cushions print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send stadium seat cushions, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for stadium seat cushion printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Yoga Mats

Yoga Mats print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send yoga mats, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for yoga mat printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Gifts Configuration Summary
Baby Products (Baby Bibs, Burp Clothes, Baby Blankets)

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข Baby-safe materials and printing processes

Standard Roll Wrapping Paper

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

Reversible Wrapping Paper Sheets

โ€ข Variable surface printing (1 or 2 surfaces)

โ€ข Print process: "digital" on surface 1 (required for multi-surface)

โ€ข Supplier SKU required for size and style identification

โ€ข Define surface 2 only if back-side printing required

โ€ข No extrinsic fields required

Luggage Wrap

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Carmats

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Laptop Bags

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Travel & Accessories (Laptop Sleeve)

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

Hitch Cover Receiver

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

License Plate Frame

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Ceramic Tiles

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Ceramic Ornaments

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Jewelry Boxes

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Trucker Hats

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Neckties

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Kitchen Towel

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Glass Cutting Boards

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Serving Trays

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Aprons

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Bathmats

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Golf Towel

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Basketball Mini Hoop

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Stadium Seat Cushions

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Yoga Mats

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

โ€ข One surface and one area in super model

Home & Decor

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

Special Case: Wood Frames

โ€ข No printing required - only supplier SKU needed

โ€ข No surface configuration or print process required

Office & Tech (Mouse Pads, Desk Mats, Monitor Screens, Webcam Covers, Phone Cases)

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

Gaming & Entertainment (Gaming Mouse Pads, Puzzles, Playing Cards)

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

๐Ÿณ๏ธ Banners

Banners provide versatile display solutions for indoor and outdoor advertising, events, and promotional campaigns. This comprehensive collection includes durable materials, mesh options for windy conditions, and specialized display formats. All banner products follow consistent configuration patterns with digital printing processes and supplier SKU requirements for optimal results.

๐Ÿณ๏ธ Banners Collection

๐Ÿณ๏ธ Standard Banners
๐Ÿšฉ Specialty Banners

Durable Banners

Durable Banners print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Durable Banners, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for durable banner printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Outdoor Mesh Banners

Outdoor Mesh Banners print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Outdoor Mesh Banners, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for outdoor mesh banner printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Durable Pennant Banners

Durable Pennant Banners print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Durable Pennant Banners, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for durable pennant banner printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Display Banners

Display Banners print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Display Banners, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for display banner printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

Retractable Banners

Retractable Banners print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Retractable Banners, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Single Surface Configuration

Define one surface and one area in the super model for retractable banner printing.

Print Process

Define the print_process field as "digital".

Supplier SKU Required

Include the supplier SKU to specify which size and style you are ordering.

Sample JSON

Sample Image

๐Ÿพ Pet Products

Pet Products offer a comprehensive range of customizable accessories for pets, featuring single-surface digital printing for durability and vibrant graphics. Each product follows consistent configuration patterns with digital print processes and supplier SKU requirements for size and style identification.

๐Ÿพ Pet Products Collection

๐Ÿ• Dog Leash

Single surface digital printing

๐Ÿฆด Dog Collar

Single surface digital printing

๐Ÿ”— Retractable Leash

Single surface digital printing

๐Ÿ›๏ธ Pet Bed

Single surface digital printing

๐Ÿท๏ธ Pet Tags

Single surface digital printing

๐Ÿฅฃ Pet Bowls

Single surface digital printing

๐Ÿงฝ Pet Mats

Single surface digital printing

๐ŸŽ€ Pet Bandanas with Collar

Single surface digital printing

๐ŸŽ€ Pet Bandanas

Single surface digital printing

๐Ÿ• Dog Leash

Dog Leashes print on one surface for durable and vibrant custom designs. Single surface printing configuration with digital print process ensures high-quality graphics suitable for daily pet use.

Configuration Property Value
Print Process digital
Surface Count 1
Area Count 1
Extrinsic Fields Not required
Supplier SKU Required (size and style identification)
Sample JSON

Sample Image

๐Ÿฆด Dog Collar

Dog Collars print on one surface for personalized pet identification and style. Single surface printing configuration ensures durability for everyday wear while maintaining vibrant custom graphics.

Configuration Property Value
Print Process digital
Surface Count 1
Area Count 1
Extrinsic Fields Not required
Supplier SKU Required (size and style identification)
Sample JSON

Sample Image

๐Ÿ”— Retractable Leash

Retractable Leashes print on one surface combining functionality with personalized design. Single surface printing accommodates the retractable mechanism while providing space for custom graphics.

Configuration Property Value
Print Process digital
Surface Count 1
Area Count 1
Extrinsic Fields Not required
Supplier SKU Required (size and style identification)
Sample JSON

Sample Image

๐Ÿ›๏ธ Pet Bed

Pet Beds print on one surface to create comfortable, personalized sleeping areas for pets. Single surface printing allows for large-format custom designs while maintaining fabric comfort and durability.

Configuration Property Value
Print Process digital
Surface Count 1
Area Count 1
Extrinsic Fields Not required
Supplier SKU Required (size and style identification)
Sample JSON

Sample Image

๐Ÿท๏ธ Pet Tags

Pet Tags print on one surface for essential pet identification and contact information. Single surface printing on durable materials ensures long-lasting readability for pet safety and identification.

Configuration Property Value
Print Process digital
Surface Count 1
Area Count 1
Extrinsic Fields Not required
Supplier SKU Required (size and style identification)
Sample JSON

Sample Image

๐Ÿฅฃ Pet Bowls

Pet Bowls print on one surface to create personalized feeding accessories for pets. Single surface printing on food-safe materials ensures both functionality and custom aesthetic appeal.

Configuration Property Value
Print Process digital
Surface Count 1
Area Count 1
Extrinsic Fields Not required
Supplier SKU Required (size and style identification)
Sample JSON

Sample Image

๐Ÿงฝ Pet Mats

Pet Mats print on one surface for functional feeding and play areas. Single surface printing on durable, easy-to-clean materials provides personalized spaces for pet activities while maintaining hygiene.

Configuration Property Value
Print Process digital
Surface Count 1
Area Count 1
Extrinsic Fields Not required
Supplier SKU Required (size and style identification)
Sample JSON

Sample Image

๐ŸŽ€ Pet Bandanas with Collar

Pet Bandanas with Collar print on one surface combining style accessories with functional collar features. Single surface printing creates fashionable pet accessories while maintaining collar functionality.

Configuration Property Value
Print Process digital
Surface Count 1
Area Count 1
Extrinsic Fields Not required
Supplier SKU Required (size and style identification)
Sample JSON

Sample Image

๐ŸŽ€ Pet Bandanas

Pet Bandanas print on one surface for stylish pet fashion accessories. Single surface printing on comfortable fabric materials allows for creative designs while ensuring pet comfort and style.

Configuration Property Value
Print Process digital
Surface Count 1
Area Count 1
Extrinsic Fields Not required
Supplier SKU Required (size and style identification)
Sample JSON

Sample Image

Pet Products Configuration Summary
Common Requirements (All Pet Products)

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Single area definition required

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

Product Categories

โ€ข Accessories: Dog Leash, Dog Collar, Retractable Leash

โ€ข Comfort Items: Pet Bed, Pet Mats

โ€ข Feeding: Pet Bowls

โ€ข Identification: Pet Tags

โ€ข Fashion: Pet Bandanas with Collar, Pet Bandanas

๐Ÿท๏ธ Decal Art

Decal Art products include high-quality adhesive decals for various surfaces including windows, walls, counters, and floors. Each decal type offers specialized substrate options while maintaining consistent configuration patterns with digital printing processes.

๐Ÿท๏ธ Decal Art Collection

Indoor Window Decals

Indoor Window Decals print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Indoor Window Decals, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering. Indoor Window Decals are available in three substrates: opaque, clear, and frosted, but the model is the same for them all.

Configuration Requirements
Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Substrate Options

Available in three substrates: opaque, clear, and frosted. The JSON model is the same for all substrate types.

Sample JSON

Sample Image

Wall / Counter Decals

Wall/Counter Decals print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Wall/Counter Decals, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering. Wall/Counter Decals are available in two substrates: gloss and fabric, but the JSON is the same for each.

Configuration Requirements
Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Substrate Options

Available in two substrates: gloss and fabric. The JSON configuration is identical for both substrate types.

Sample JSON

Sample Image

Floor Decals

Floor Decals print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Floor Decals, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Decal Art Configuration Summary
Common Requirements

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size and style identification

โ€ข No extrinsic fields required

Substrate Variations

โ€ข Indoor Window Decals: opaque, clear, frosted (same model)

โ€ข Wall/Counter Decals: gloss, fabric (same JSON)

โ€ข Floor Decals: standard substrate configuration

๐Ÿ–ผ๏ธ Wall Art

Wall Art products include Acrylic, Metal, Foam Board and Poster Wall Art types. All of these types use the same super model when passing values. However, when using the super model to send wall art, you will need to define one extrinsic field called "attributes" with the key value pair of "accessories", and define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

๐Ÿ–ผ๏ธ Wall Art Types

๐Ÿ“„ Acrylic Wall Art
๐Ÿ”ฉ Metal Wall Art
๐Ÿ“‹ Foam Board Wall Art
๐Ÿ“ฐ Poster Wall Art
Configuration Requirements
Extrinsic Field Required

Define one extrinsic field called "attributes" with the key value pair of "accessories".

Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Super Model Format

The Super Model needs to follow the specified format and contain the attribute with the key value pair of "accessories" with the values from the configuration table.

Sample JSON

Sample Image - Acrylic/Aluminum Wall Art

Sample Image - Brushed Metal/Foam Board Wall Art

Sample Image - Poster Wall Art

๐Ÿชง Signs and Graphics

Signs and Graphics products include a comprehensive range of customizable signage solutions for indoor and outdoor use. Each product type has specific configuration requirements for surfaces, printing processes, and dimensional specifications.

๐Ÿชง Signs and Graphics Products

Plastic Yard Signs

Plastic Yard Signs print on one or two surface(s) as shown in the picture below. You will only need to define the number of surfaces being printed on that sign. If only one side is printed, define surface 1, but add surface 2 if the back is printed as well. You will also need to define the print_process field. If you have multiple surfaces, "digital" must always be surface one.

Configuration Requirements
Surface Configuration

Define the number of surfaces being printed. Single-sided: surface 1 only. Double-sided: surfaces 1 and 2.

Print Process

If multiple surfaces: "digital" must always be surface one.

Sample JSON

Sample Image

Metal Yard Signs

Metal Yard Signs print on one or two surface(s) as shown in the picture below. You will only need to define the number of surfaces being printed on that sign. If only one side is printed, define surface 1, but add surface 2 if the back is printed as well. You will need to define the print_process field. If you have multiple surfaces, "digital" must always be surface one.

Configuration Requirements
Surface Configuration

Define the number of surfaces being printed. Single-sided: surface 1 only. Double-sided: surfaces 1 and 2.

Print Process

If multiple surfaces: "digital" must always be surface one.

Sample JSON

Sample Image

Indoor Foam Board

Indoor Foam Boards print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send indoor foam boards, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Surface Configuration

Single surface printing - define one surface and one area in the super model.

Sample JSON

Sample Image

Expanded PVC Indoor Sign

Expanded PVC Indoor Signs print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Expanded PVC Indoor Signs, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Indoor/Outdoor Plastic Signs

Indoor/Outdoor Plastic Signs print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Indoor/Outdoor Plastic Signs, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Engraved Plastic Signs

Engraved Plastic Signs print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Engraved Plastic Signs, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Indoor/Outdoor Magnets

Indoor/Outdoor Magnets print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Indoor/Outdoor Magnets, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Indoor/Outdoor A-Frame Signs

Indoor/Outdoor A-Frame Signs print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Indoor/Outdoor A-frame Signs, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Office Wall Signs & Holders

Office Wall Signs & Holders print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Office Wall Signs & Holders, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Desk/Counter Signs

Desk/Counter Signs print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Desk/Counter Signs, you will not need to define extrinsic fields, but you will need to define the print_process field as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

Define the print_process field as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Desk/Counter Table Tents

Desk / Counter Table Tents print on one or two surface(s) as shown in the picture below. You will only need to define the number of surfaces being printed on that table tent. If only one side is printed, define surface 1, but add surface 2 if the back is printed as well. While you will define an extrinsic field for the fold, this will either be "horizontal" or "vertical". You will need to define the print_process field. If you have multiple surfaces, "digital" must always be surface one.

Configuration Requirements
Surface Configuration

Define the number of surfaces being printed. Single-sided: surface 1 only. Double-sided: surfaces 1 and 2.

Extrinsic Field Required

Define an extrinsic field for the fold: "horizontal" or "vertical".

Print Process

If multiple surfaces: "digital" must always be surface one.

Sample JSON

Sample Image

Desk/Counter Pedestal Signs

Desk / Counter Pedestal Signs print on one surface as shown in the picture below. You will only need to define one surface and one area in the super model. When using the super model to send Desk & Counter Pedestal Signs, you will not need to define extrinsic fields, but you will need to define the print_process as "digital". You must also include the supplier sku, which will let Taylor know which size and style you are ordering.

Configuration Requirements
Print Process

Define the print_process as "digital".

Supplier SKU Required

You must include the supplier SKU, which will let Taylor know which size and style you are ordering.

Sample JSON

Sample Image

Signs and Graphics Configuration Summary
Common Requirements

โ€ข Surface configuration varies by product (single vs. multiple surfaces)

โ€ข Print process: "digital" (must be surface 1 for multi-surface products)

โ€ข Supplier SKU required for size and style identification

โ€ข Extrinsic fields only for specific products (Table Tents: fold direction)

๐Ÿท๏ธ Decal Art

Decal Art products provide versatile adhesive solutions for interior decoration and branding applications. These products feature different substrate options optimized for specific surfaces and applications, with digital print processes for high-quality custom graphics.

๐Ÿท๏ธ Decal Art Products

๐ŸชŸ Indoor Window Decals

Opaque, clear, and frosted substrate options

๐Ÿงฑ Wall/Counter Decals

Gloss and fabric substrate variations

๐Ÿ‘ฃ Floor Decals

Durable floor-grade adhesive application

๐ŸชŸ Indoor Window Decals

Indoor Window Decals offer three distinct substrate options for different visual effects and privacy requirements. Each substrate maintains excellent adhesion to glass surfaces while providing unique aesthetic properties.

Property Opaque Substrate Clear Substrate Frosted Substrate
Print Process digital digital digital
Surface Count 1 1 1
Supplier SKU Required Required Required
Visual Effect Solid coverage, no transparency Transparent background with printed areas Semi-transparent with etched glass effect
Best For Full coverage graphics, privacy needs Logo displays, partial graphics Elegant branding, subtle privacy
Sample JSON

Sample Image

๐Ÿงฑ Wall/Counter Decals

Wall/Counter Decals provide versatile surface application options with two distinct substrate variations. These decals are designed for interior wall surfaces and counter applications with strong adhesive properties.

Property Gloss Substrate Fabric Substrate
Print Process digital digital
Surface Count 1 1
Supplier SKU Required Required
Finish High-gloss reflective surface Matte fabric texture
Application Smooth walls, glass, countertops Textured walls, fabric surfaces
Visual Characteristics Vibrant colors, reflective properties Soft appearance, non-reflective
Sample JSON

Sample Image

๐Ÿ‘ฃ Floor Decals

Floor Decals are engineered for high-traffic floor applications with specialized adhesive and durability properties. These decals provide excellent adhesion to floor surfaces while maintaining visual clarity under foot traffic.

Configuration Property Standard Configuration
Print Process digital
Surface Count 1
Supplier SKU Required for size specification
Substrate Type Heavy-duty floor-grade vinyl
Adhesive High-strength floor adhesive
Durability Traffic-resistant with protective coating
Application Surface Smooth floors (tile, concrete, sealed wood)
Sample JSON

Sample Image

Decal Art Configuration Summary
Common Requirements (All Decal Products)

โ€ข Single surface printing configuration

โ€ข Print process: "digital"

โ€ข Supplier SKU required for size specification

โ€ข No extrinsic fields required

Substrate Variations

โ€ข Indoor Window Decals: Choose between opaque, clear, or frosted substrates

โ€ข Wall/Counter Decals: Available in gloss or fabric substrate options

โ€ข Floor Decals: Standard heavy-duty vinyl with specialized floor adhesive

Appendix

Enum Product Types

Details
Product Type 1 Product Type 2 Product Type 3 Product Type 4
BusinessCard Stamps Menu WallArt
FlatNoteCard NapkinsCoined Flyer YardSigns
FoldededNoteCard NapkinsUncoined PostIt TableTent
Envelopes Coaster PostitCube Gifts
BusinessCard Drinkware Mousepad Notebook
Planner

File Types

Details
File Type Approved Format
Word DocDOC
EPS FileEPS
GIF FileGIF
JPG or JPEG fileJPG
Adobe PDF or PDFPDF
PNG FilePNG
TIF FileTIF
Excel FileXLS
XML file TypeXML
Zip fileZIP
Details
CarrierCode CarrierName ServiceCode ServiceLevel
FFedExF3DFedEx-Express Saver
FFedExFFOFedEx-First Overnight
FFedExXGFedEx-Ground
FFedExFSPFedEx-Priority Overnight
FFedExFPPFedEx-Standard Overnight
UUPSUGUPS Ground
UUPSUSAUPS 2nd Day Air AM by Noon
UUPSUTSUPS 3Day Select
UUPSUNNUPS Next Day Air
UUPSUNEUPS Next Day Air Early
UUPSUSDUPS Next Day Saturday
UUPSUNSUPS Next Day Saver
UUPSUEXUPS Expedited International
UUPSUINUPS International
UUPSUSUPS 2nd EOD
PUSPSPFUSPS First Class Mail
PUSPSPENUSPS Express Mail Next Day
PUSPSPFPUSPS First Class Parcel
PUSPSPPUSPS Priority Mail
PUSPSPPPUSPS Parcel Post

State Abbreviations

Details
US State Name USPS Abbreviation US State Name USPS Abbreviation
AlabamaALNevadaNV
AlaskaAKNew HampshireNH
ArizonaAZNew JerseyNJ
ArkansasARNew MexicoNM
CaliforniaCANew YorkNY
ColoradoCONorth CarolinaNC
ConnecticutCTNorth DakotaND
DelawareDEOhioOH
FloridaFLOklahomaOK
GeorgiaGAOregonOR
HawaiiHIPennsylvaniaPA
IdahoIDRhode IslandRI
IllinoisILSouth CarolinaSC
IndianaINSouth DakotaSD
IowaIATennesseeTN
KansasKSTexasTX
KentuckyKYUtahUT
LouisianaLAVermontVT
MaineMEVirginiaVA
MarylandMDWashingtonWA
MassachusettsMAWest VirginiaWV
MichiganMIWisconsinWI
MinnesotaMNWyomingWY
MississippiMSAmerican SamoaAS
MissouriMOGuamGU
MontanaMTPuerto RicoPR
NebraskaNEU.S. Virgin IslandsVI