Last Updated on : 2023-07-06 08:16:30download
Query the binding relationship between an organization and a member on pages.
POST: /v1.0/iot-03/idaas/spaces/{space_id}/organization-users/actions/query
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
space_id | String | uri | true | The ID of a specified space. |
Description of body
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
organization_code | String | body | false | The identifier of a specified organization. |
uid | String | body | false | The user's identifier. |
page_number | Integer | body | false | The current page number. |
page_size | Integer | body | false | The number of items per page. |
Parameter name | Type | Description |
---|---|---|
result | Page | The returned result on pages, including the current page number, number of items on each page, total number of pages, total number of items, and specific data. |
Description of result
Parameter name | Type | Description |
---|---|---|
total_count | Integer | The total number of items that are found. |
total_pages | Integer | The total number of pages. |
page_number | Integer | The current page number. |
page_size | Integer | The number of items per page. |
results | IdaasOrganizationUserVO | The list of results. |
Description of results
Parameter name | Type | Description |
---|---|---|
organization_code | String | The identifier of a specified organization. |
uid | String | The user's identifier. |
space_id | String | The ID of a specified space. |
status | Integer | Indicates whether the organization is enabled. Valid values:
|
POST: /v1.0/iot-03/idaas/spaces/1400335346549391440/organization-users/actions/query
{
"page_number": 10,
"page_size": 20,
"organization_code": "1400335346598629930"
}
{
"result": {
"total_count": 1,
"total_pages": 1,
"page_number": 1,
"results": [
{
"organization_code": "1400335346598629930",
"uid": "1400335346599528750",
"space_id": "1400727198159081506",
"status": 0
}
],
"page_size": 20
},
"t": 1629272469492,
"success": true
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback