XpressConnect
  • Introduction
  • Version History
  • Overview
    • How It Works
    • Server
    • API Request/Response
    • Authentication
  • API Endpoints
    • Courier
      • List
    • Declaration
      • Submit
      • Query
      • Attach
    • Commodity
      • List
    • Claim
      • Submit
      • Query
      • Update
      • Attach Document
      • Detach Document
  • Models
    • Courier
    • Declaration
    • Item
    • Commodity
    • Claim
    • Claim Document
  • Reference
    • Example PHP Code
    • Country
    • Errors
Powered by GitBook
On this page
  • Endpoint
  • Response

Was this helpful?

  1. API Endpoints
  2. Courier

List

List all courier available

Endpoint

/api/courier/list

Response

Successful Response Params

Name

Description

Type

couriers

List Of Couriers

Array ( Courier )

default

Default Courier

string ( code )

Example Response (VIP):

{
    "status": "SUCCESS",
    "couriers": [
        {
            "code": "OTHERS",
            "name": "Others"
        },
        {
            "code": "POSLAJU",
            "name": "PosLaju"
        }
    ],
    "default": "OTHERS"
}
PreviousCourierNextDeclaration

Last updated 5 years ago

Was this helpful?