通知接口 -奇异果体育app竞彩官网下载
更新时间:2021-12-21
新建通知接口
接口描述
创建通知。
请求(request)
- 请求语法:
post /v{version}/notification http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:
字段名称 | 字段类型 | 是否必选 | 字段描述 | 参数位置 |
---|---|---|---|---|
name | string | 必选 | 通知名称,最大长度128字符 | requestbody |
endpoint | string | 必选 | 通知地址,最大长度256字符 | requestbody |
token | string | 可选 | 通知验证token,最大长度32字符,支持大小写字母和数字 | requestbody |
authtype | enum | 可选 | 通知验证类型,none:无验证,sign:签名验证默认为none | requestbody |
- 请求示例:
post /v1/notification http/1.1
x-bce-date: 2019-05-31t09:27:33z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/c0188830c0c342928f199bbbdac4c227/2019-05-31t09:27:33z/1800/host/f19dfaf46b9e6b619e9be203650701a2bec9db18a980686ddb3a3a58132558e1
{
"name":"notification",
"endpoint": "http://localhost:8000/callback/url"
"token": "qea4p01nb",
"authtype": "sign"
}
响应(response)
- 响应头域:无特殊header参数
- 响应参数:无
- 响应示例:
http/1.1 200 ok
transfer-encoding: chunked
x-bce-request-id: ca8620b4-0527-4153-b6ed-3a6c0a4da937
cache-control: no-cache
server: bws
date: fri, 31 may 2019 09:27:33 gmt
content-type: application/json;charset=utf-8
删除通知接口
接口描述
根据通知名称删除指定通知信息。
请求(request)
- 请求语法
delete /v{version}/notification/{name} http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:无
- 请求示例:
delete /v1/notification/{name} http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应(response)
- 响应头域:无特殊header参数
- 响应参数:无
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache
更新通知接口
接口描述
根据通知名称更新指定通知信息。
请求(request)
- 请求语法
put /v{version}/notification/{name} http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:
字段名称 | 字段类型 | 必要性 | 字段描述 | 参数位置 |
---|---|---|---|---|
endpoint | string | 可选 | 通知地址,最大长度256字符 | requestbody |
token | string | 可选 | 通知验证token,最大长度32字符,支持大小写字母和数字 | requestbody |
authtype | enum | 可选 | 通知验证类型,none:无验证,sign:签名验证;默认为none | requestbody |
1、endpoint/token/authtype三个请求参数至少一个不为空。
- 请求示例:
put /v1/notification/{name} http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
{
"endpoint": "http://localhost:8000/callback/url"
"token": "zxcasd123",
"authtype": "sign"
}
响应(response)
- 响应头域:无特殊header参数
- 响应参数:无
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache
查询通知信息
接口描述
根据通知名称查询指定通知信息。
请求(request)
- 请求语法
get /v{version}/notification/{name} http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:无
- 请求示例:
get /v1/notification/{name} http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应(response)
- 响应头域:无特殊header参数
- 响应参数:
字段名称 | 字段类型 | 字段描述 |
---|---|---|
name | string | 通知名称 |
endpoint | string | 通知地址 |
status | object | 通知状态,状态值:enable/disable |
token | string | 通知验证token |
authtype | string | 通知验证类型 |
createtime | string | 通知创建时间 |
updatetime | string | 通知修改时间 |
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache
{
"name":"notification",
"endpoint": "http://localhost:8000/callback/url",
"status":"disable",
"token": "",
"authtype": "none",
"createtime":"2015-03-25t13:37:10z",
"updatetime":"2015-04-25t13:37:10z"
}
查询通知列表
接口描述
查询通知列表。
请求(request)
- 请求语法
get /v{version}/notification?status={status} http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:
字段名称 | 字段类型 | 必要性 | 字段描述 | 参数位置 |
---|---|---|---|---|
status | object | 可选 | 状态,状态值:enable/disable | query |
- 请求示例:
get /v1/notification?status=enable http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应(response)
- 响应头域:无特殊header参数
- 响应参数:
字段名称 | 字段类型 | 字段描述 |
---|---|---|
notifications | array | 通知列表 |
name | string | 通知名称 |
endpoint | string | 通知地址 |
status | string | 状态,状态值:enable/disable |
token | string | 通知验证token |
authtype | string | 通知验证类型 |
createtime | string | 通知创建时间 |
updatetime | string | 通知修改时间 |
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache
{
"notifications": [
{
"notificationid": "not-jgsevd7fj24i6eri",
"name": "test",
"endpoint": "http://10.145.80.177:8902/internal/v1/callback/mock/notification",
"status": "enable",
"token": "",
"authtype": "none",
"createtime": "2019-07-17t04:04:39z",
"updatetime": "2019-07-17t04:54:13z"
},
{
"notificationid": "not-jgtn14r76cjf8f27",
"name": "test2",
"endpoint": "http://12313",
"status": "disable",
"token": "as14gsgz",
"authtype": "sign",
"createtime": "2019-07-18t12:13:32z",
"updatetime": "2019-07-22t14:29:47z"
},
{
"notificationid": "not-jgyj8s7znx0k4sde",
"name": "test_20190723",
"endpoint": "http://test.com/callback",
"status": "enable",
"token": "",
"authtype": "none",
"createtime": "2019-07-23t09:18:52z",
"updatetime": "2019-07-23t09:18:52z"
}
]
}
停用通知接口
接口描述
根据通知名称停用指定通知。
请求(request)
- 请求语法:
put /v{version}/notification/{name}?disable http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:无
- 请求示例:
put /v1/notification/{name}?disable http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应(response)
- 响应头域:无特殊header参数
- 响应参数:无
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache
启用通知接口
接口描述
根据通知名称启用指定通知。
请求(request)
- 请求语法:
put /v{version}/notification/{name}?enable http/1.1
x-bce-date: {utc-date-string}
host: bvw.bj.baidubce.com
content-type: application/json
authorization: {bce-authorization-string}
- 请求头域:无特殊header参数
- 请求参数:无
- 请求示例:
put /v1/notification/{name}?enable http/1.1
x-bce-date: 2015-07-03t09:28:13z
host: bvw.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2015-07-03t09:28:13z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应(response)
- 响应头域:无特殊header参数
- 响应参数:无
- 响应示例:
http/1.1 200 ok
x-bce-request-id: 6d0b0a36-2ffe-49d4-9d81-333a9ab9417e
date: tue, 24 mar 2015 13:06:02 gmt
transfer-encoding: chunked
content-type: application/json;charset=utf-8
cache-control: no-cache