Batch create sub organizations
POSThttps://api.one.blendvision.com/bv/org/v1/sub-orgs:batch
Create multiple sub-organizations once with all necessary details for each sub-organization.
Request
Header Parameters
x-bv-org-id stringrequired
To invoke this API using api_token
, you need to set the x-bv-org-id
header to specify the organization for which you want to perform the action.
- application/json
Body
required
organizations object[]
Responses
- 200
- 400
- 401
- 403
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
organizations object[]
{
"organizations": [
{
"organization": {
"id": "string",
"name": "string",
"parent_id": "string",
"type": "ORGANIZATION_TYPE_ROOT",
"status": "ORGANIZATION_STATUS_ACTIVATED",
"description": "string",
"owner": {
"id": "string",
"email": "string",
"password": "string",
"first_name": "string",
"last_name": "string",
"role_type": "ROLE_TYPE_OWNER",
"status": "ACCOUNT_STATUS_ACTIVATED",
"created_status": "CREATED_ACCOUNT_STATUS_SUCCEED",
"attrs": {},
"need_confirm": true,
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z"
},
"accounts": [
{
"id": "string",
"email": "string",
"password": "string",
"first_name": "string",
"last_name": "string",
"role_type": "ROLE_TYPE_OWNER",
"status": "ACCOUNT_STATUS_ACTIVATED",
"created_status": "CREATED_ACCOUNT_STATUS_SUCCEED",
"attrs": {},
"need_confirm": true,
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z"
}
],
"time_zone": "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",
"has_sub_orgs": true,
"parent_name": "string",
"license_key": "string",
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z"
},
"created_status": "CREATED_ORG_STATUS_SUCCEED"
}
]
}
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
code int32
message string
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
code int32
message string
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
code int32
message string
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
code int32
message string
details object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
code int32
message string
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:batch' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'authorization: <API_KEY_VALUE>' \
--data-raw '{
"organizations": [
{
"billing_cycle": 0,
"contract_days": 0,
"contract_months": 2,
"contract_valid_start_time": "2023-07-24T14:15:22Z",
"description": "test",
"name": "blendvision",
"owner": {
"email": "blendvision@kkcompany.com",
"first_name": "test",
"last_name": "test",
"need_confirm": false
},
"parent_id": "04212e7d-16ab-4996-bc3a-cf88719cd867",
"plan_ids": [
"a8579efc-6828-4fc3-be7e-6000feabda77"
],
"time_zone": "Asia/Taipei",
"type": "ORGANIZATION_TYPE_BUSINESS"
}
]
}'
ResponseClear