POST Cargo/HandlingSurcharge

Request Information

URI Parameters

None.

Body Parameters

CargoHandlingSurchargeRequest
NameDescriptionTypeAdditional information
supplierName

string

None.

handlingID

string

None.

userID

user API

string

None.

accessToken

access code getting from login

string

None.

Request Formats

application/json, text/json

Sample:
{
  "supplierName": "sample string 1",
  "handlingID": "sample string 2",
  "userID": "sample string 3",
  "accessToken": "sample string 4"
}

application/xml, text/xml

Sample:
<CargoHandlingSurchargeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cebes.DI.H2H.Api.Models">
  <accessToken>sample string 4</accessToken>
  <userID>sample string 3</userID>
  <handlingID>sample string 2</handlingID>
  <supplierName>sample string 1</supplierName>
</CargoHandlingSurchargeRequest>

Response Information

Resource Description

CargoHandlingSurchargeResponse
NameDescriptionTypeAdditional information
handlingSurcharges

Collection of CargoHandlingSurchargeModel

None.

respTime

describe time in sending response

date

None.

userID

user ID to access API

string

None.

accessToken

access token that needed to access API

string

None.

status

SUCCESS or FAILED

string

None.

respMessage

detail message of response status

string

None.

Response Formats

application/json, text/json

Sample:
{
  "handlingSurcharges": [
    {
      "handlingSurchargeID": "sample string 1",
      "handlingSurchargeName": "sample string 2"
    },
    {
      "handlingSurchargeID": "sample string 1",
      "handlingSurchargeName": "sample string 2"
    }
  ],
  "respTime": "2025-01-22T23:53:13.3509344+07:00",
  "userID": "sample string 2",
  "accessToken": "sample string 3",
  "status": "sample string 4",
  "respMessage": "sample string 5"
}

application/xml, text/xml

Sample:
<CargoHandlingSurchargeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cebes.DI.H2H.Api.Models">
  <accessToken>sample string 3</accessToken>
  <respMessage>sample string 5</respMessage>
  <respTime>2025-01-22T23:53:13.3509344+07:00</respTime>
  <status>sample string 4</status>
  <userID>sample string 2</userID>
  <handlingSurcharges>
    <CargoHandlingSurchargeModel>
      <handlingSurchargeID>sample string 1</handlingSurchargeID>
      <handlingSurchargeName>sample string 2</handlingSurchargeName>
    </CargoHandlingSurchargeModel>
    <CargoHandlingSurchargeModel>
      <handlingSurchargeID>sample string 1</handlingSurchargeID>
      <handlingSurchargeName>sample string 2</handlingSurchargeName>
    </CargoHandlingSurchargeModel>
  </handlingSurcharges>
</CargoHandlingSurchargeResponse>