Objects

Job

Job

An object that holds all information about a Job.

FieldTypeDescription
referenceStringThe reference for the Job
productStringThe unique identifier (UUID) of the selected print product
quantityNumberThe number of copies or units
optionsJobOption[]An array that can hold additional options or features related to the entire print job, such as binding for multipage products
componentsJobComponent[]An array representing the different components or parts of the print job
metaJobMetaAn object of data for your convenience

JobComponent

An object that holds all information about a Job's component.

FieldTypeDescription
labelStringOne of general|cover|pages depending on single or multipage
sizeStringThe size of the Job
materialStringThe stock to be used for the Job
optionsJobComponentOption[]An array of finishing items, such as lamination, perforation
range_startNumberThe page count for Job
range_endNumberThe page count for Job
artworkArtworkThe artwork for the Job

JobOption

An object that contains a finishing item attached to the main Job.

Please note this is different to JobComponentOption.

FieldTypeDescription
finishing_itemStringThe finishing alias or UUID
configurationObject (optional)An optional configuration object specific to the finishing item

JobComponentOption

An object that contains a finishing item attached to a Job Component.

Please note this is different to JobOption.

FieldTypeDescription
finishing_itemStringThe finishing alias or UUID
configurationObject (optional)An optional configuration object specific to the finishing item

JobMeta

An object of data for your convenience.

FieldTypeDescription
dataObjectAn unstructured object of arbitrary data for your convenience

Job status

FieldTypeDescription
idStringThe unique identifier of the job status
canonicalStringThe canonical identifier for the job status
valueStringThe value representing the job status
reasonStringThe reason or description for the job status
translationTranslationThe translation object
userUserThe user object
created_atDateTimeThe DateTime object

Example:

{
  "id": "6e93674d-7384-4141-bacd-94358381e2fc",
  "canonical": "job.status.production_dispatched",
  "value": "production_dispatched",
  "reason": "Palm: fulfilment dispatched",
  "translation": Translation,
  "user": User,
  "created_at": DateTime
}

Artwork

Artwork

An object that contains an array of files relating to a Job.

FieldTypeDescription
filesArtworkFile[]An array of artwork files

ArtworkFile

An object that contains Artwork information that is bound to a finishing item.

FieldTypeDescription
labelStringA label or identifier for the artwork component, usually "ink"
finishing_itemStringThe finishing for which the artwork belongs
fileFileThe remote file

File

An object that contains information on a remote file.

FieldTypeDescription
mime_typeStringThe mime type of the artwork
sourceStringThe remote URL where the file is accessible

Batch

Job Batch

An object that contains all information about one or more Jobs and its delivery information.

FieldTypeDescription
idStringThe unique identifier of the Batch
jobsJob[]An optional configuration object specific to the finishing item
delivery_optionDeliveryOptionThe DeliveryOption for the associated Jobs
statusStatusThe status of the Batch

Queued Batch

An object that contains a Job and an associated DeliveryOption queued for Auto Batching.

FieldTypeDescription
idStringThe unique identifier of the Queued Batch
jobJobThe Job to be queued
delivery_optionDeliveryOptionThe DeliveryOption for the associated Job
statusStatusThe status of the Queued Batch

Delivery

Delivery Option

FieldTypeDescription
idStringUnique identifier for the object.
pricePricePricing details of the item.
created_atDateTimeCreation timestamp.
turnaroundTurnaroundTurnaround details.
evaluation_dateDateTimeEvaluation date timestamp.
delivery_addressDelivery AddressDelivery address details.
delivery_serviceDelivery ServiceDelivery service information.
production_houseProduction HouseDetails of the production house.
turnaround_pricePricePrice details for the turnaround.
production_strategyTurnaroundProduction strategy details.
delivery_date_latestDateTimeLatest delivery date.
lifetime_finish_dateDateTimeLifetime finish date.
jobs_production_houseProduction HouseJobs' production house details.
turnaround_parametersTurnaround ParametersTurnaround parameters.
delivery_date_earliestDateTimeEarliest delivery date.
delivery_service_groupDelivery Service GroupDelivery service group information.
delivery_service_pricePriceDelivery service price details.
end_of_production_dateDateTimeEnd of production date.
delivery_collection_dateDateTimeCollection date of the delivery.
primary_production_houseProduction HousePrimary production house details.
production_strategy_pricePriceProduction strategy price details.
created_using_fast_routineBooleanWhether it was created using fast routine.
delivery_time_frame_latestStringLatest delivery time frame.
delivery_time_frame_earliestStringEarliest delivery time frame.
`assumed_start_of_production_dateDateTimeAssumed start of production date.

Show example

Delivery Service

FieldTypeDescription
idStringUnique identifier for the delivery service.
is_trackedBooleanIndicates if the service is tracked.
service_codeStringCode for the delivery service.
is_signed_forBooleanIndicates if the service requires a signature.
delivery_carrierDelivery CarrierDetails about the delivery carrier.
delivery_finish_time_configurationsDelivery Time ConfigurationsTime frame configurations for delivery.

Delivery Carrier

FieldTypeDescription
nameStringName of the carrier.
aliasStringAlias of the carrier.
provider_for_dispatchStringProvider for dispatching.
provider_for_availability_and_ratesStringProvider for availability and rates.

Delivery Service Group

FieldTypeDescription
idStringUnique identifier for the delivery service group.
nameStringName of the delivery service group.

Delivery Time Configurations

FieldTypeDescription
delivery_time_frame_earliestStringEarliest time frame for delivery (e.g., 07:00).
delivery_time_frame_latestStringLatest time frame for delivery (e.g., 18:00).

Price

FieldTypeDescription
baseIntegerBase price of the item.
valueStringValue of the item.
currencyStringCurrency of the price.
formattedStringFormatted String of the price.

Miscellaneous

Status

FieldTypeDescription
canonicalStringThe canonical of the status
translationTranslationThe translations for the status

Translation

FieldTypeDescription
localeStringThe locale of the translation
nameStringThe translated name of the object
summaryStringA summary or description of the object

Example:

{
  "locale": "en",
  "name": "Production Dispatched",
  "summary": "The job has been dispatched."
}

User

FieldTypeDescription
idStringThe unique identifier of the user
emailStringThe email address of the user
nameStringThe name of the user
job_titleStringThe job title of the user

Example:

{
  "id": "5933e6bb-9f93-36b9-a428-4b89010a2e82",
  "name": "System",
  "email": "system@printeddirect.com",
  "job_title": "Automated Workflow"
}

DateTime

FieldTypeDescription
isoStringThe date and time in ISO 8601 format

Example:

{
  "iso": "2024-02-28T16:31:29+00:00"
}

Errors

Error

FieldTypeDescription
messageStringA descriptive message explaining the error
canonicalStringA canonical error code for reference purposes

Violations

The violations object contains a list of fields that have errors and corresponding error messages.

Field nameTypeDescription
field_nameStringThe name of the field that has a validation violation
string[]StringA descriptive message explaining the validation violation

Show example