POST api/PutContainerJobUnloaded?AuthToken={AuthToken}

Upload the Container UnLoad Data for a Job (Import)-(DEPRECIATED)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
AuthToken

Users AuthToken provided from Authenticate Method

string

Required

Body Parameters

The Container UnLoad Record data

APIContainerUnLoadJob
NameDescriptionTypeAdditional information
JobID

JobID

integer

None.

DateUnpacked

date

None.

KeyNumber

string

None.

ContainerNo

string

None.

SealNo

string

None.

Raised

boolean

None.

NonRunner

boolean

None.

DeadNonRunner

boolean

None.

NoTyresFlat

integer

None.

NoWheelsOff

integer

None.

AdditionalNotesPacking

string

None.

HandlerData

The Cargo Handlers Data

CargoHandlerRecord

None.

Request Formats

application/json, text/json

Sample:
{
  "JobID": 1,
  "DateUnpacked": "2025-12-12T21:19:02.5989429+00:00",
  "KeyNumber": "sample string 3",
  "ContainerNo": "sample string 4",
  "SealNo": "sample string 5",
  "Raised": true,
  "NonRunner": true,
  "DeadNonRunner": true,
  "NoTyresFlat": 9,
  "NoWheelsOff": 10,
  "AdditionalNotesPacking": "sample string 11",
  "HandlerData": {
    "starttime": "2025-12-12T21:19:02.5989429+00:00",
    "endtime": "2025-12-12T21:19:02.5989429+00:00",
    "usersidlist": "sample string 6"
  }
}

application/xml, text/xml

Sample:
<APIContainerUnLoadJob xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JAMAPI.Models">
  <AdditionalNotesPacking>sample string 11</AdditionalNotesPacking>
  <ContainerNo>sample string 4</ContainerNo>
  <DateUnpacked>2025-12-12T21:19:02.5989429+00:00</DateUnpacked>
  <DeadNonRunner>true</DeadNonRunner>
  <HandlerData>
    <endtime>2025-12-12T21:19:02.5989429+00:00</endtime>
    <starttime>2025-12-12T21:19:02.5989429+00:00</starttime>
    <usersidlist>sample string 6</usersidlist>
  </HandlerData>
  <JobID>1</JobID>
  <KeyNumber>sample string 3</KeyNumber>
  <NoTyresFlat>9</NoTyresFlat>
  <NoWheelsOff>10</NoWheelsOff>
  <NonRunner>true</NonRunner>
  <Raised>true</Raised>
  <SealNo>sample string 5</SealNo>
</APIContainerUnLoadJob>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteMessage holding the post status

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.