Skip to content

Create Group

corsacca edited this page Feb 27, 2018 · 1 revision

This page is a work in progress. The code is being made to follow this documentation

The function source code: Create group function

PHP Class function

Usage

Disciple_Tools_Groups::create_group( $fields, true );

Parameters

  • array fields (Required): an array of fields like name, phone number corresponding to the new group. See Group-Fields-Format.
  • check_permissions: check if the signed in user has the permission to perform this action. By default this should be true, unless this is called by an automated process.

Returns

  • int $group_id, the id of the newly created group
  • WP_ERROR, in the case something went wrong.

Rest API:

  • url: https://example.com/wp-json/dt/v1/group/create
  • type: POST
  • data: A JSON string of fields object. See Group-Fields-Format.
  • contentType: "application/json; charset=UTF-8",
  • dataType: "json",

Fields

Have a look at the fields page: Group-Fields-Format