这是用户在 2024-11-21 18:27 为 https://docs-sega-chazki.netlify.app/sega 保存的双语快照页面,由 沉浸式翻译 提供双语支持。了解如何保存?

Detalles de Orden 订单详情

get GET 获取
https://integrations.ng.paquery.com/sega/api/v2/shipment
/{tracking} /{跟踪}

This API allows us to see all the states the delivery passed group by services.The services group reference the number of attempts made to deliver the delivery.
此 API 使我们能够查看配送通过的服务组所经过的所有状态。服务组引用了尝试配送的次数。

tracking 追踪
string 字符串
required 必需的

Código de orden o código de seguimiento
订单代码或跟踪代码

key 
string 字符串
required 必需的

Identificador de empresa, es un hash generado por Chazki para identificar la empresa, se obtiene una vez generada la empresa dentro de Chazki por el área comercial.
企业标识符,是 Chazki 生成的一个用于识别企业的哈希值,在 Chazki 内部由商业部门生成企业后获得。

Detalles total de la orden.
订单详细信息。

responses 响应
/
200
tracking 追踪
string 字符串

Código de orden o código de seguimiento, con este código podrás rastrear el pedido.
订单代码或跟踪代码,用此代码您可以追踪订单。

Example: 示例:
XXXXX-12345
type 类型
string 字符串

Código del tipo de servicio de entrega.Show all...
服务类型代码。显示全部...

Example: 示例:
SAME DAY 同一天
cod cod (由于 "cod" 是一个英文单词,通常指的是鱼或鱼类的肉,没有特定的文化或地区含义,因此在这里不需要翻译。)
number 数字

Para el valor 0 (false) es envio se indica como pagado, para el valor 1 (true) el pago se realiza en la dirección de destino (contra reembolso), el importe a cobrar al destinatario final es enviado en el campo value dentro de product.
对于值 0(假)的发货表示为已付款,对于值 1(真)的付款在目的地地址(到付)进行,最终收件人应收取的金额在 product 内的 value 字段中发送。

Example: 示例:
0
kind 种类
string 字符串

Type of service at a commercial level.
商业级别的服务类型。

Example: 示例:
B2B
created 创建
string 字符串

Fecha de creación en formato RFC-3339 (ISO-8601) en UTC.
创建日期,格式为 RFC-3339(ISO-8601),UTC 时区。

Example: 示例:
2024-06-20T18:21:21Z
update 更新
string 字符串

Fecha de actualizacion en formato RFC-3339 (ISO-8601) en UTC.
更新日期,采用 RFC-3339(ISO-8601)格式,以 UTC 表示。

Example: 示例:
2024-06-24T11:20:10Z 2024 年 6 月 24 日 11:20:10
status 状态
string 字符串

Estado del envío. 发货状态。

Example: 示例:
CROSSDOCKED 跨码头
product 产品
object 对象
description 描述
string 字符串
required 必需的

Descripción o nombres de los productos de la orden.
订单产品的描述或名称。

Example: 示例:
XXXXXXX XXXXXXXXX XXXXXXXX
value 价值
number 数字

Precio o valor de paquetes.
价格或套餐价值。

Example: 示例:
0
quantity 数量
number 数字

Número total de paquetes.Show all...
总包数。显示全部...

Example: 示例:
0
size 尺寸
string 字符串

Tamaño promedio de los paquetes.
平均包大小。

Example: 示例:
Chico 奇科
dimensions 尺寸
object 对象
origin 原始
object 对象
name 姓名
string 字符串
required 必需的

Nombres de contacto para el recojo o entrega de productos.
联系人姓名,用于产品取件或交付。

Example: 示例:
XXXXXXXXXXXXXXXXXXXXXXXXX
phone 电话
string 字符串
required 必需的

Numero de telefono/celular de contacto para el recojo o entrega de productos.
联系电话/手机号码,用于产品取件或送货。

Example: 示例:
XXXXX-xxxxx
email 电子邮件
string 字符串
required 必需的

Email para notificación el recojo o entrega de los productos.
电子邮件用于通知产品取件或送货。

Example: 示例:
mail@mail.com
reference 参考
string 字符串

Referencias de direcciones de clientes para el recojo o entrega de los productos.
客户收货或送货地址参考。

Example: 示例:
-
notes 笔记
string 字符串

Datos adicionales que facilitan la recojo o entrega de productos.
额外数据,便于收集或交付产品。

Example: 示例:
-
schedule 安排
string 字符串

Datos de franja horaria para el recojo o entrega de productos.
时区数据,用于产品收集或交付。

Example: 示例:
08 a 18
address 地址
object 对象

Estructura con la información de recojo o entrega, para la estura 'origen' es posible enviar null si se desea tomar la dirección registrada en el marketplace por defecto.Show all...
结构包含收货或送货信息,对于'原点'结构,如果想要使用市场默认的地址,可以发送 null。显示全部...

destination 目的地
object 对象
history 历史
array[object] 数组[对象]
date 日期
string 字符串

Fecha de evento en formato RFC-3339 (ISO-8601) en UTC.
事件日期,格式为 RFC-3339(ISO-8601),UTC 时区。

Example: 示例:
2024-06-20T19:05:08Z
description 描述
string 字符串

Detalle del evento generado.
事件详情。

Example: 示例:
En Chazki 恩查基
location 位置
string 字符串

Localidad o distrito donde se genera el evento.
本地或地区发生事件的地点。

Example: 示例:
Buenos Aires 
Parameters 参数
:
:
const data = null;
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('GET', 'https://integrations.ng.paquery.com/sega/api/v2/shipment/tracking');
xhr.setRequestHeader('Accept', 'application/json');
xhr.send(data);
Response Example 响应示例
1
{
2
"tracking": "XXXXX-12345",
3
"type": "SAME DAY",
4
"cod": 0,
5
"kind": "B2B",
6
"created": "2024-06-20T18:21:21Z",
7
"update": "2024-06-24T11:20:10Z",
8
"status": "CROSSDOCKED",
9
"product": {
10
"description": "XXXXXXX XXXXXXXXX XXXXXXXX",
11
"value": 0,
12
"quantity": 0,
13
"size": "Chico",
14
"dimensions": {
15
"height": 0,
16
"width": 0,
17
"length": 0
18
}
19
},
20
"origin": {
21
"name": "XXXXXXXXXXXXXXXXXXXXXXXXX",
22
"phone": "XXXXX-xxxxx",
23
"email": "mail@mail.com",
24
"reference": "-",
25
"notes": "-",
26
"schedule": "08 a 18",
27
"address": {
28
"line": "XXXXXXXXXXXXXXXXXXXXXXXXX",
29
"zip": "15314",
30
"route": " ",
31
"streetNumber": 0,
32
"locality": "XXXXXXXXXXXXXXXXXXXXXXXXX",
33
"region": "XXXXXXXXXXXXXXXXXXXXXXXXX",
34
"latLng": {
35
"lat": -12.0052,
36
"lng": -90.0034
37
}
38
}
39
},
40
"destination": {
41
"name": "XXXXXXXXXXXXXXXXXXXXXXXXX",
42
"phone": "XXXXX-xxxxx",
43
"email": "mail@mail.com",
44
"reference": "-",
45
"notes": "-",
46
"schedule": "08 a 18",
47
"address": {
48
"line": "XXXXXXXXXXXXXXXXXXXXXXXXX",
49
"zip": "15314",
50
"route": " ",
51
"streetNumber": 0,
52
"locality": "XXXXXXXXXXXXXXXXXXXXXXXXX",
53
"region": "XXXXXXXXXXXXXXXXXXXXXXXXX",
54
"latLng": {
55
"lat": -12.0052,
56
"lng": -90.0034
57
}
58
}
59
},
60
"history": [
61
{
62
"date": "2024-06-20T19:05:08Z",
63
"description": "En Chazki",
64
"location": "Buenos Aires"
65
}
66
]
67
}