Skip to content

PrintQueueJob_Delete#


Description#

This function allows you to get the status of a print job from a print queue using its job id.

Request Body Parameters#

Parameter
Type Description
PrintQueueJob_ID String Print Queue Job Description. Example: Label For Shipment 12345

Response Parameters#

Parameter
Type Description
success boolean Boolean value for if the request was successful
status Possible Values: exists, does not exist

Example Request#

{
    "Function": "PrintQueueJob_Status",
    "PrintQueueJob_ID": 3
}

Example Response#

{
    "success": 1,
    "data": {
        "status": "exists"
    }
}