Tạo bưu gửi

Create Order

POST http://ws.ems.com.vn/api/v1/orders/create-v2

API tạo bưu gửi.

Path Parameters

Headers

Request Body

Thành công:
{
    'code': 'success',
    'message': 'Thành công',
    'data': [
        'tracking_code': [string],
        'courier_code': '',
        'status_code': [string],
        'fee': [
            'fee': [number], // cước chính
            'remote_fee': [number] // cước vùng xa
        ],
        'vas': [
            'total_vas': [number], // tổng cước dịch vụ cộng thêm
            'vas_detail': [
                [
                'code': [string], // mã dịch vụ cộng thêm
                'fee': [number] // cước dịch vụ cộng thêm
                ]
            ] // chi tiết cước dịch vụ cộng thêm
        ],
        'money_collect': [number]
    ]
}

Thất bại:
{
    'code': 'error',
    'message': '.....',
}

Last updated