Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

...

Info

Note: Unique Id should be the same as invoice number (current version)

URL : <BASE_URL>/trips/unique_id/<UNIQUE_ID>/submit-pod
Method: “POST
Headers: {“token“:”<access token for the company>”}

...

Info

Can update all the value

URL: <BASE_URL>/trips/unique_id/<UNIQUE_ID>/pod-submissions/<SUBMISSION_ID>
Method: “PUT
Headers: {“token“:”<access token for the company>”}
Request Body: same as the submit EPOD payload

Approve ePOD

URL: <BASE_URL>/trips/unique_id/<UNIQUE_ID>/pod-submissions/<SUBMISSION_ID>/approve
Method: “PUT
Headers: {“token“:”<access token for the company>”}

Expand
titleRequest payload

Code Block
languagejson
{
   "verifier_name": "Raj", // null or blank allowed
   "verifier_phone_no": "1234567890", // null or blank allowed
   "verifier_email": "raj@example.com", // null or blank allowed
   "verifier_comment": "this is a comment", // null or blank allowed
    “verifier_type”: “CEE” // null or blank allowed
}

Expand
titleJSON Schema

Code Block
{
  "type": "object",
  "properties": {
    "verifier_name": {
      "type": "string"
    },
    "verifier_phone_no": {
      "type": "string"
    },
    "verifier_email": {
      "type": "string"
    },
    "verifier_comment": {
      "type": "string"
    },
    "verifier_type": {
      "type": "string"
    }
  }
}

Dispute ePOD

URL: <BASE_URL>/trips/unique_id/<UNIQUE_ID>/pod-submissions/<SUBMISSION_ID>/dispute
Method: “PUT
Headers: {“token“:”<access token for the company>”}
Request Body: same as the approve EPOD payload

...