-
Notifications
You must be signed in to change notification settings - Fork 63
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
Disciple_Tools_Groups::create_group( $fields, true );
- 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.
- int $group_id, the id of the newly created group
- WP_ERROR, in the case something went wrong.
- 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",
Have a look at the fields page: Group-Fields-Format