Last Updated on : 2023-06-21 07:12:54
Get to know which projects or stores of the current user account have subscribed to a specified ISV application. That is, the status is installed, enabled, and the project or store is visible to the current account.
GET: /v1.0/iot-02/paas/appstore/isv/subscribers
| Parameter name | Type | IN | Required | Description | 
|---|---|---|---|---|
| page_request | AppSubscribePageRequest | query | false | The request body. | 
Description of page_request
| Parameter name | Type | IN | Required | Description | 
|---|---|---|---|---|
| page_size | Integer | false | The number of items returned on each page. Default value: 100. Maximum value:200. | |
| page_no | Integer | false | The current page number. Default value: 1. | 
| Parameter name | Type | Description | 
|---|---|---|
| result | PageResult | The returned result. Valid values: | 
Description of result
| Parameter name | Type | Description | 
|---|---|---|
| total | Long | The total number of returned entries. | 
| data | List | A collection of data. | 
| has_more | Boolean | Specifies whether to return the next page. | 
Description of data
| Parameter name | Type | Description | 
|---|---|---|
| subscriber_id | String | The ID of a specified subscriber. | 
| subscriber_name | String | The name of a specified subscriber. | 
GET: /v1.0/iot-02/paas/appstore/isv/subscribers
{
    "code": "200",
    "result": {
        "data": [
            {
                "subscriber_id": "xxx",
                "subscriber_name": "xxx"
            }
        ],
        "total": 2,
        "has_more": false
    },
    "success": "true"
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback