Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url https://api.unibee.top/merchant/webhook/endpoint_list \
--header 'Authorization: Bearer <token>'
{
"code": 123,
"data": {
"endpointList": [
{
"createTime": 123,
"gmtModify": 123,
"id": 123,
"merchantId": 123,
"webhookEvents": [
"<string>"
],
"webhookUrl": "<string>"
}
]
},
"message": "<string>",
"redirect": "<string>",
"requestId": "<string>"
}
curl --request GET \
--url https://api.unibee.top/merchant/webhook/endpoint_list \
--header 'Authorization: Bearer <token>'
{
"code": 123,
"data": {
"endpointList": [
{
"createTime": 123,
"gmtModify": 123,
"id": 123,
"merchantId": 123,
"webhookEvents": [
"<string>"
],
"webhookUrl": "<string>"
}
]
},
"message": "<string>",
"redirect": "<string>",
"requestId": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.