API Request to Create a new Group

Request URL
https://yourgrupowebsiteaddress/api_request/

Request body

FieldDescription/ValuesRequired/Optional
api_secret_keyYour Grupo API Secret Key. For API Secret Key, Click on Menu > Select Settings > Select General Settings > Find API Secret KeyRequired
addgroupsRequired
group_nameThe name of the new group to be created.Required
descriptionGroup DescriptionOptional
slugThe URL-friendly slug for the group.Optional
secret_groupPrivate group which is completely hidden from non members. [yes|no]Optional
unleavableUsers are not allowed to leave this group [yes|no]Optional
pin_groupWhen you pin a group, it appears at the top of the list of groups. [yes|no]Optional
password_protectGroups can be password protected, requiring a password to view/join the group [yes|no]Optional
passwordPassword for the Group
group_icon_urlThe URL for the Group Icon ImageOptional
custom_field_[id]Replace [id] with Custom field ID.
For Custom Field ID : Click on Menu > Select Modules > Select Custom Field > Click on Custom Field you Prefer to Add > Select Edit > Find “Identifier”.
Optional

Response Body

KEYDescription/Values
successThis returns true on success and false on failure.
error_messageReturns a relevant error message
error_keyThis method returns the error key associated with the error

Example PHP Code

<?php

$grupo_web_address = 'https://yourgrupowebsiteaddress'; 

$post_fields=[
  'api_secret_key' => 'Your_Grupo_API_Secret_Key',
  'add' => 'groups',
  'group_name' => 'Group Name',
  'description' => 'Group Description',
  'slug' => 'group_slug',
  'secret_group' => 'no',
  'unleavable' => 'no',
  'pin_group' => 'no',
  'password_protect' => 'no',
  'password' => 'password',
  'group_icon_url' => 'https://group_icon_image_url',
  'custom_field_10' => 'Custom Field Value',
];

$api_request_url = rtrim($grupo_web_address, '/').'/'.'api_request/';

$curl = curl_init();
curl_setopt_array($curl, array(
  CURLOPT_URL => $api_request_url,
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => $post_fields,
  CURLOPT_USERAGENT=>'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:99.0) Gecko/20100101 Firefox/99.0'
));


$response = curl_exec($curl);

curl_close($curl);

if (!empty($response)) {
    $response = json_decode($response);
    if (!empty($response)) {
        if ($response->success) {
            echo "Group Created Successfully.";
        } else {
            echo $response->error_message;
        }
    }
}
?>