GET Api/v1/Print/{jobId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
jobId

integer

Required

Body Parameters

None.

Response Information

Resource Description

PrintJobViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

LogStart

date

None.

LogEnd

date

None.

Metric

boolean

None.

IndividualDays

boolean

None.

ShowViolations

boolean

None.

Tasks

Collection of PrintTaskViewModel

None.

CreatedBy

string

None.

CreatedOn

date

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "logStart": "2025-04-21T05:17:20.2194068-06:00",
  "logEnd": "2025-04-21T05:17:20.2194068-06:00",
  "metric": true,
  "individualDays": true,
  "showViolations": true,
  "tasks": [
    {
      "id": 1,
      "driverId": "sample string 2",
      "driverName": "sample string 3",
      "fileName": "sample string 4",
      "status": 0
    },
    {
      "id": 1,
      "driverId": "sample string 2",
      "driverName": "sample string 3",
      "fileName": "sample string 4",
      "status": 0
    }
  ],
  "createdBy": "sample string 7",
  "createdOn": "2025-04-21T05:17:20.2194068-06:00"
}