Skip to main content
POST
/
v2
/
groups
Create Group
curl --request POST \
  --url https://api.galileo.ai/v2/groups \
  --header 'Content-Type: application/json' \
  --header 'Splunk-AO-API-Key: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "visibility": "public",
  "users": []
}
'
import requests

url = "https://api.galileo.ai/v2/groups"

payload = {
    "name": "<string>",
    "description": "<string>",
    "visibility": "public",
    "users": []
}
headers = {
    "Splunk-AO-API-Key": "<api-key>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
  method: 'POST',
  headers: {'Splunk-AO-API-Key': '<api-key>', 'Content-Type': 'application/json'},
  body: JSON.stringify({name: '<string>', description: '<string>', visibility: 'public', users: []})
};

fetch('https://api.galileo.ai/v2/groups', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.galileo.ai/v2/groups",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => json_encode([
    'name' => '<string>',
    'description' => '<string>',
    'visibility' => 'public',
    'users' => [
        
    ]
  ]),
  CURLOPT_HTTPHEADER => [
    "Content-Type: application/json",
    "Splunk-AO-API-Key: <api-key>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.galileo.ai/v2/groups"

	payload := strings.NewReader("{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"visibility\": \"public\",\n  \"users\": []\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("Splunk-AO-API-Key", "<api-key>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.galileo.ai/v2/groups")
  .header("Splunk-AO-API-Key", "<api-key>")
  .header("Content-Type", "application/json")
  .body("{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"visibility\": \"public\",\n  \"users\": []\n}")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.galileo.ai/v2/groups")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Splunk-AO-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"visibility\": \"public\",\n  \"users\": []\n}"

response = http.request(request)
puts response.read_body
{
  "id": "<string>",
  "name": "<string>",
  "size": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "permissions": [],
  "description": "<string>",
  "visibility": "public"
}
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Authorizations

Splunk-AO-API-Key
string
header
required

Body

application/json
name
string
required
Required string length: 1 - 128
description
string | null
visibility
enum<string>
default:public
Available options:
public,
private,
hidden,
protected
users
GroupMemberCreate · object[]

Response

Successful Response

id
string<uuid4>
required
name
string
required
Required string length: 1 - 128
size
integer
required
created_at
string<date-time>
required
permissions
Permission · object[]
description
string | null
visibility
enum<string>
default:public
Available options:
public,
private,
hidden,
protected
role
enum<string> | null

The role of the current user in the group.

Available options:
maintainer,
member,
pending