Boundary controller HTTP API
Group Service
Lists all Groups.
Query Parameters
scope_id
string
recursive
boolean
filter
string
You can specify that the filter should only return items that match. Refer to filter expressions for more information.
list_token
string
An opaque token that Boundary uses to continue an existing iteration or request updated items. If you do not specify a token, pagination starts from the beginning. To learn more about list pagination in Boundary, refer to list pagination.
page_size
integer
The maximum size of a page in this iteration. If unset, the default page size configured will be used. If the page_size is greater than the default page configured, the page size will be truncated to this number.
Creates a single Group.
Body Parameters
scope_id
string
The ID of the scope of which this Group is a part.
name
string
Optional name for identification purposes.
description
string
Optional user-set descripton for identification purposes.
version
integer
Version is used in mutation requests, after the initial creation, to ensure this resource has not changed. The mutation will fail if the version does not match the latest known good version.
Gets a single Group.
Path Parameters
id
string
RequiredDeletes a Group.
Path Parameters
id
string
RequiredUpdates a Group.
Path Parameters
id
string
RequiredBody Parameters
scope_id
string
The ID of the scope of which this Group is a part.
name
string
Optional name for identification purposes.
description
string
Optional user-set descripton for identification purposes.
version
integer
Version is used in mutation requests, after the initial creation, to ensure this resource has not changed. The mutation will fail if the version does not match the latest known good version.
Adds members to a Group.
Path Parameters
id
string
RequiredBody Parameters
version
integer
Version is used to ensure this resource has not changed. The mutation will fail if the version does not match the latest known good version.
member_ids
string[]
Removes the specified members from a Group.
Path Parameters
id
string
RequiredBody Parameters
version
integer
Version is used to ensure this resource has not changed. The mutation will fail if the version does not match the latest known good version.
member_ids
string[]
Set a Group's members to exactly the list of provided in the request, removing any members that are not specified.
Path Parameters
id
string
RequiredBody Parameters
version
integer
Version is used to ensure this resource has not changed. The mutation will fail if the version does not match the latest known good version.
member_ids
string[]