Basic//
- Get Merchant Authorization Information
Webhook URL Configuration
OAuth Token Operations
Batch Decrypt
Get Merchant Authorizatio...
This API retrieves merchant information and authorized store lists based on the authentication token provided in the request, enabling developers to validate access permissions and obtain essential business context.
Pagination parameter: indicates the current page number (starting from 1)
Example:1
POST
curl -i -X POST \
https://open.mykeeta.com/api/open/base/authorized/resource/get \
-H 'Content-Type: application/json' \
-d '{
"pageNum": 1,
"pageSize": 1,
"appId": 834563,
"accessToken": "b989f155b3304da19a324021eb9e9aaa"
}'Successful retrieval of authorized resources.
A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully.
| Enum Value | Description |
|---|---|
| 0 | The request was executed successfully. |
| Non-zero value | The request execution failed. Specific error details can be viewed in the message field. |
Example:0
Text description corresponding to the status code, explaining the operation result or error cause to users.
Example:"Success"
Response
{ "code": 0, "message": "Success", "data": { "userId": "593890666", "brandId": 4323, "brandName": "GUI JI", "authorizedShops": [ … ], "page": { … } } }