GET api/GetJobsForAdditionalImages?AuthToken={AuthToken}&numberOfDays={numberOfDays}

Get a list of Jobs That can have additional Images

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AuthToken

Users AuthToken provided from Authenticate method

string

Required

numberOfDays

The number of days prior to today (default is 1)

integer

Default value is 1

Body Parameters

None.

Response Information

Resource Description

List of Job Records

Collection of JobForImages
NameDescriptionTypeAdditional information
ID

integer

None.

JobType

string

None.

ModelOfCar

string

None.

MakeOfCar

string

None.

ColourOfCar

string

None.

ChassisNo

string

None.

KeyNumber

string

None.

CustomerName

string

None.

Unpacked

boolean

None.

DateUnpacked

date

None.

DateArrived

date

None.

VehicleRegistration

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "JobType": "sample string 2",
    "ModelOfCar": "sample string 3",
    "MakeOfCar": "sample string 4",
    "ColourOfCar": "sample string 5",
    "ChassisNo": "sample string 6",
    "KeyNumber": "sample string 7",
    "CustomerName": "sample string 8",
    "Unpacked": true,
    "DateUnpacked": "2025-12-12T21:21:34.5423246+00:00",
    "DateArrived": "2025-12-12T21:21:34.5423246+00:00",
    "VehicleRegistration": "sample string 12"
  },
  {
    "ID": 1,
    "JobType": "sample string 2",
    "ModelOfCar": "sample string 3",
    "MakeOfCar": "sample string 4",
    "ColourOfCar": "sample string 5",
    "ChassisNo": "sample string 6",
    "KeyNumber": "sample string 7",
    "CustomerName": "sample string 8",
    "Unpacked": true,
    "DateUnpacked": "2025-12-12T21:21:34.5423246+00:00",
    "DateArrived": "2025-12-12T21:21:34.5423246+00:00",
    "VehicleRegistration": "sample string 12"
  }
]

application/xml, text/xml

Sample:
<ArrayOfJobForImages xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JAMAPI.Models">
  <JobForImages>
    <ChassisNo>sample string 6</ChassisNo>
    <ColourOfCar>sample string 5</ColourOfCar>
    <CustomerName>sample string 8</CustomerName>
    <DateArrived>2025-12-12T21:21:34.5423246+00:00</DateArrived>
    <DateUnpacked>2025-12-12T21:21:34.5423246+00:00</DateUnpacked>
    <ID>1</ID>
    <JobType>sample string 2</JobType>
    <KeyNumber>sample string 7</KeyNumber>
    <MakeOfCar>sample string 4</MakeOfCar>
    <ModelOfCar>sample string 3</ModelOfCar>
    <Unpacked>true</Unpacked>
    <VehicleRegistration>sample string 12</VehicleRegistration>
  </JobForImages>
  <JobForImages>
    <ChassisNo>sample string 6</ChassisNo>
    <ColourOfCar>sample string 5</ColourOfCar>
    <CustomerName>sample string 8</CustomerName>
    <DateArrived>2025-12-12T21:21:34.5423246+00:00</DateArrived>
    <DateUnpacked>2025-12-12T21:21:34.5423246+00:00</DateUnpacked>
    <ID>1</ID>
    <JobType>sample string 2</JobType>
    <KeyNumber>sample string 7</KeyNumber>
    <MakeOfCar>sample string 4</MakeOfCar>
    <ModelOfCar>sample string 3</ModelOfCar>
    <Unpacked>true</Unpacked>
    <VehicleRegistration>sample string 12</VehicleRegistration>
  </JobForImages>
</ArrayOfJobForImages>