API Docs
Home
Home
Developer GuideAPI
StatusWebhooks
Developer GuideAPI
StatusWebhooks
  1. Courier
  • Config
    • List Pickup Address
      GET
    • List Box Dimension
      GET
    • List vendor
      GET
    • List store
      GET
  • Online Product
    • Options
      • List category
      • List brand
    • Create Single Product
      POST
    • Create Product From Product Inventory
      POST
    • List product
      GET
    • Product detail
      GET
  • Product Inventory
    • Options
      • List Outbound Strategy
      • List Product Type
      • List Material
      • List Storage Method
    • List product inventory
      GET
    • Product inventory detail
      GET
    • Create single inventory product
      POST
  • Order
    • Shipping Service
      • Preview shipping prices
        • List shipping service
        • List available courier
      • List available courier from order
      • List shipping service of courier
    • Create order B2C
      POST
    • Create order B2B
      POST
    • List order
      GET
    • Order detail
      GET
    • Cancel order
      PATCH
  • Shipment
    • Create shipment auto
      POST
    • [Retail][Ship by self] Create shipment with item
      POST
    • Cancel shipment
      PATCH
    • List shipment
      GET
    • Shipment detail
      GET
    • List shipment of order
      GET
  • Shipment Inbound
    • Create shipment inbound
    • Cancel shipment inbound
    • List shipment inbound
    • Shipment inbound detail
    • Shipment inbound items
  • Order Return
    • List return order
    • Return order detail
    • Create return order
    • Cancel Return Order
  • Courier
    • List courier service integrated
      GET
    • List courier operate
      GET
    • List courier integrated
      GET
  • Address Directory
    • Province
    • District
    • Ward
  1. Courier

List courier service integrated

GET
/api/v1/public/couriers/integrated/{{courier_integration_id}}/service/list
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '/api/v1/public/couriers/integrated/{{courier_integration_id}}/service/list' \
--header 'Authorization;'
Response Response Example
{
    "status_code": 0,
    "data": [
        {
            "id": 0,
            "service_code": "string",
            "priority": 0,
            "is_active": true,
            "is_delete": true,
            "created_time": 0,
            "updated_time": 0,
            "courier": 0,
            "courier_service": {
                "id": 0,
                "country": "string",
                "partner_code": "string",
                "code": "string",
                "name": "string",
                "estimate_time": "string",
                "support_check_content": true,
                "support_use_insurance": true,
                "support_partial_delivery": true,
                "is_fulfill_now": true,
                "only_fulfill": true,
                "platform": "string",
                "courier": 0,
                "original_courier": 0
            },
            "integration": 0
        }
    ],
    "error": true,
    "error_code": null,
    "log_id": null,
    "messages": "string",
    "total": 0
}

Request

Header Params
Authorization
string 
required
Default:
{{your_api_key_here}}

Responses

🟢200OK
application/json
Body
status_code
integer 
required
data
array [object {10}] 
required
id
integer 
required
service_code
string 
required
priority
integer 
required
is_active
boolean 
required
is_delete
boolean 
required
created_time
integer 
required
updated_time
integer 
required
courier
integer 
required
courier_service
object 
required
integration
integer 
required
error
boolean 
required
error_code
null 
required
log_id
null 
required
messages
string 
required
total
integer 
required
Previous
Cancel Return Order
Next
List courier operate
Built with