Skip to main content

nShift Delivery Help Center

/print

Print is how you manage print client applications, printers and print jobs on your nShift Delivery account.

Huomaa

The REST API endpoints are only accessible via HTTPS and are located at api.unifaun.com.

https://api.unifaun.com/rs-extapi/v1

Before getting started you need to know your developer ID and create an API key.

Fetch print clients

GET/print/clients

Fetches a list of all Print client applications. Returns only partial list using pagination parameters page and size, which provides a way to narrow down the Print client selection.

Fetch a print client

GET /print/clients/{clientId}

Fetches a specific Print client application, identified by client ID.

Fetch printers for a print client

GET /print/clients/{clientId}/printers

Fetches a list of all printers that are connected to a specific Print client application, identified by client ID. Returns only partial list using pagination parameters page and size.

Fetch printers

GET/print/printers

Fetches a list of all printers that are connected to any Print client application. Returns only partial list using pagination parameters page and size.

Fetch a printer

GET/print/printers/{printerId}

Fetches printer details for a printer, identified by printer ID, that is connected to a Print client.

Fetch print jobs

GET/print/printjobs

Fetches a list of all print jobs sent to any Print client, possibly filtered by date and/or status. Returns only partial list using pagination parameters page and size.

Fetch a print job

GET/print/printjobs/{printJobId}

Fetches a specific print job that has been sent to a Print client, using print job ID.

Send a shipment print job to a printer

POST/print/shipments/{shipmentId}/prints/{printId}/printjobs

Sends print job for a shipment to any connected printer using shipment ID and print ID as identifiers. Returns the resulting print job.

Send a shipment list print job to a printer

POST/print/shipment-manifests/{manifestId}/prints/{printId}/printjobs

Sends a print job for a shipment list to any connected printer using manifest ID and print ID as identifiers. Returns the resulting print job.

Send a consolidated shipment print job to a printer

POST/print/consolidated-shipments/{consolidatedId}/prints/{printId}/printjobs

Sends a print job for a consolidated shipment to any connected printer using consolidated shipment ID and print ID as identifiers. Returns the resulting print job.

Vihje

For schema and testing, please refer to https://api.unifaun.com/rs-docs/.

For description of properties, please refer to the Property reference guide.