GET api/GetJobImageInfo?AuthToken={AuthToken}&JobID={JobID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| AuthToken | string |
Required |
|
| JobID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ImageInfo| Name | Description | Type | Additional 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>