GET api/GetJobImageInfo?AuthToken={AuthToken}&JobID={JobID}

Get information on images for a specified job id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AuthToken

Users AuthToken provided from Authenticate method

string

Required

JobID

Job ID for information

integer

Required

Body Parameters

None.

Response Information

Resource Description

ImageInfo Record

ImageInfo
NameDescriptionTypeAdditional information
HasPrimary

boolean

None.

HasSecondary

boolean

None.

HasDamagePrimary

boolean

None.

HasDamageSecondary

boolean

None.

HasArrivePrimary

boolean

None.

HasArriveSecondary

boolean

None.

ArriveCount

integer

None.

AdditionalCount

integer

None.

DamageCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "HasPrimary": true,
  "HasSecondary": true,
  "HasDamagePrimary": true,
  "HasDamageSecondary": true,
  "HasArrivePrimary": true,
  "HasArriveSecondary": true,
  "ArriveCount": 7,
  "AdditionalCount": 8,
  "DamageCount": 9
}

application/xml, text/xml

Sample:
<ImageInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JAMAPI.Models">
  <AdditionalCount>8</AdditionalCount>
  <ArriveCount>7</ArriveCount>
  <DamageCount>9</DamageCount>
  <HasArrivePrimary>true</HasArrivePrimary>
  <HasArriveSecondary>true</HasArriveSecondary>
  <HasDamagePrimary>true</HasDamagePrimary>
  <HasDamageSecondary>true</HasDamageSecondary>
  <HasPrimary>true</HasPrimary>
  <HasSecondary>true</HasSecondary>
</ImageInfo>