# Get Merchant Authorization Information 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. Endpoint: POST /base/authorized/resource/get Version: v.1.0.0 ## Request fields (application/json): - `pageNum` (integer, required) Pagination parameter: indicates the current page number (starting from 1) Example: 1 - `pageSize` (integer, required) Pagination parameter: indicates the number of items per page Example: 1 ## Response 200 fields (application/json): - `code` (integer, required) A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully. - `message` (string, required) Text description corresponding to the status code, explaining the operation result or error cause to users. Example: "Success" - `data` (object) - `data.userId` (string) Merchant Account ID Example: "593890666" - `data.brandId` (integer) Brand ID of the store Example: 4323 - `data.brandName` (string) Brand name of the store Example: "GUI JI" - `data.authorizedShops` (array) List of authorized stores - `data.authorizedShops.id` (integer) Unique identifier of the store Example: 593890 - `data.authorizedShops.name` (string) Name of the store Example: "GUIJI" - `data.authorizedShops.address` (string) Physical address of the store Example: "Shop 266, 2nd Floor, Kwai Fong New Metropolis Plaza" - `data.authorizedShops.longitute` (string) Geographic longitude coordinate of the store Example: "114.127006" - `data.authorizedShops.latitude` (string) Geographic latitude coordinate of the store Example: "22.357059" - `data.page` (object) Pagination information container - `data.page.pageNum` (integer) Current page number (1-based index) Example: 1 - `data.page.pageSize` (integer) Number of items displayed per page Example: 10 - `data.page.totalPage` (integer) Total number of pages available Example: 1 - `data.page.totalCount` (integer) Total number of items across all pages Example: 1