Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

API v1 Create A New Group

Darren Oakley edited this page Oct 18, 2021 · 1 revision

PLEASE NOTE: This API interface is now deprecated and will be removed at some point in the future.


POST /v1/groups

http://bandiera.example.com/api/v1/groups

POSTing a request to this endpoint allows you to create a new feature group within Bandiera, it will then return you an object representing your newly created group.

Example Request:

The following curl request will create a new group in Bandiera called "new-group".

curl -X POST -d 'group[name]=new-group' 'http://bandiera.example.com/api/v1/groups'

Example Response:

{
    "group": {
        "name": "new-group"
    }
}