List sub-organizations in an organization
GEThttps://api.one.blendvision.com/bv/org/v1/sub-orgs
Lists the sub-organizations within an organization using the provided access token.
Request
Query Parameters
- ORGANIZATION_STATUS_ACTIVATED: The
Organization
is activated. - ORGANIZATION_STATUS_VERIFYING: The
Organization
is created but awaiting the owner to verify. - ORGANIZATION_STATUS_FAIL_TO_VERIFY: The
Organization
failed to verify since the invitation is expired. - ORGANIZATION_STATUS_DEACTIVATED: The
Organization
is deactivated since the contract is expired or manually changed by the parent admin. - ORGANIZATION_STATUS_DELETING: The
Organization
is awaiting related resources deleted. - ORGANIZATION_STATUS_DELETED: The
Organization
is deleted. - ORGANIZATION_STATUS_ACTIVATION_SCHEDULED: The
Organization
is activation scheduled since the first contract is not start.
Input only. Indicates the current page to shows. Default: 1
Input only. Indicates the number of items to shows per page. Default: 1. Max: 100.
Input only. To list the sub-orgs that contains the name in the results.
Possible values: [ORGANIZATION_TYPE_ROOT
, ORGANIZATION_TYPE_GENERAL_DISTRIBUTOR
, ORGANIZATION_TYPE_RESELLER
, ORGANIZATION_TYPE_BUSINESS
]
Input only. To list the sub-orgs that contains the list of types in the results.
Possible values: [ORGANIZATION_STATUS_ACTIVATED
, ORGANIZATION_STATUS_VERIFYING
, ORGANIZATION_STATUS_FAIL_TO_VERIFY
, ORGANIZATION_STATUS_DEACTIVATED
, ORGANIZATION_STATUS_DELETING
, ORGANIZATION_STATUS_DELETED
, ORGANIZATION_STATUS_ACTIVATION_SCHEDULED
]
Input only. To list the sub-orgs that contains the list of statuses in the results.
Responses
- 200
- 400
- 401
- 403
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
organizations object[]
pagination object
{
"organizations": [
{
"id": "string",
"name": "string",
"parent_id": "string",
"type": "ORGANIZATION_TYPE_ROOT",
"status": "ORGANIZATION_STATUS_ACTIVATED",
"description": "string",
"owner_email": "string",
"billing_cycle": 0,
"contract_valid_start_time": "2024-07-29T15:51:28.071Z",
"contract_months": 0,
"contract_days": 0,
"contract_valid_end_time": "2024-07-29T15:51:28.071Z",
"next_contract": {
"start_time": "2024-07-29T15:51:28.071Z",
"months": 0,
"days": 0,
"end_time": "2024-07-29T15:51:28.071Z",
"parent_id": "string",
"plan_id": "string"
},
"has_sub_orgs": true,
"parent_name": "string",
"license_key": "string",
"time_zone": "string",
"owner": {
"id": "string",
"email": "string",
"status": "ACCOUNT_STATUS_ACTIVATED",
"role_type": "ROLE_TYPE_OWNER",
"created_at": "2024-07-29T15:51:28.071Z",
"first_name": "string",
"last_name": "string",
"role_id": "string"
},
"business_setting": {
"business_plan_type": "BUSINESS_PLAN_TYPE_BVONE",
"category": "string",
"tax_id": "string",
"enable_create_site": true,
"site_limit": 0,
"enable_custom_domain": true,
"marketplace_url": "string",
"marketplace_id": "string"
},
"logo": {
"library_id": "string",
"url": "string"
},
"template_id": "string",
"template": {
"id": "string",
"name": "string"
},
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z"
}
],
"pagination": {
"total_items": 0,
"items_per_page": 0,
"current_page": 0
}
}
A bad request response.
The code
is 3
means got an invalid argument. There are more HTTP status code mappings listed on here and gRPC code on here.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A unauthenticated response.
The header authorization
was missing or unidentified.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A forbidden response.
It means that the provided authorization
did not have enough permission to access the resource or the API.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
A server error response. There are more HTTP status code mappings listed on here.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
Authorization: authorization
name: authorizationtype: apiKeydescription: Enter the token with Bearer schema prefix, eg. `Bearer <token-string>`in: header
- curl
- python
- go
- nodejs
- php
- CURL
curl -L 'https://api.one.blendvision.com/bv/org/v1/sub-orgs' \
-H 'Accept: application/json' \
-H 'authorization: <API_KEY_VALUE>'