hi,欢迎来到转单宝! 您好,请登录 免费注册

公共参数

请求地址(仅支持HTTP GET请求方式)

环境 请求地址
正式环境 //api.zhuandan.com/v1/get.delivery.time.list

系统参数说明:

参数名 参数类型 参数描述 示例值
app_key String(32) 应用的app key adc7a8960911564e89ce69fd92546aaa
access_token String(32) 获取到的应用授权 adc7a8960911564e89ce69fd92546aaa
timestamp String(10) 当前请求时间戳 1401935833(允许时差±5分钟,单位秒)
sig String(32) 接口请求签名 adc7a8960911564e89ce69fd92546aaa

响应结构体

名称 类型 示例 描述
id int 1 配送时间字典的ID
type int 0 配送时间是否自定义(1:自定义时间;0:系统时间)
name string 当日送达(00:00 - 23:59) 字典描述

响应示例

{
	"code": 200,
	"result": [{
		"id": 1,
		"type": 0,
		"name": "当日送达(00:00 - 23:59)"
	}, {
		"id": 2,
		"type": 0,
		"name": "上午送达(08:00 - 11:00)"
	}, {
		"id": 3,
		"type": 0,
		"name": "中午送达(11:00 - 14:00)"
	}, {
		"id": 4,
		"type": 0,
		"name": "下午送达(14:00 - 18:00)"
	}, {
		"id": 5,
		"type": 0,
		"name": "晚上送达(18:00 - 22:00)"
	}, {
		"id": 6,
		"type": 1,
		"name": "自定义配送时间"
	}],
	"error": ""
}