Skip to main content

CreateGroup

Create a new group

Description

Creates a new group under the specified group.

Method

POST

Request URL Format

/api/v0/groups/:parent-group-id

URL Params

"parent-group-id": Required Create a new group under the specified group

Payload

Content-Type : application/json

{
"name" : "グループ名", // Required
"display_id": "グループID"  // Required
}

Request URL Sample

POST https://api.xxx.com/api/v0/groups/:parent-group-id

Response Sample

{
"group": {
"access_key": "作成されたグループのアクセスキー",
"created_at": "作成時間 年-月-日時刻",
"display_id": "グループのDisplay_ID",
"g_id": "作成されたグループID",
"id": "作成されたグループID",
"index": 0, //("int index position of this group layer")
"is_root": false, //("true" if positioned at the top of the bool group tree)
"name": "グループ名"
},
"groupTree_datastores_res": null // ("whether or not there is a group under the control of")
}