Account management

Use these commands to manage teams, organizations, and users with the Make CLI.


Teams

Manage your teams.


make-cli teams list

List teams for the current user.

Options

Option
Description
Required

--organization-id

The organization ID to list teams for

Yes

Example

make-cli teams list --organization-id=5

make-cli teams get

Get details of a specific team.

Arguments

Argument
Description
Required

<team-id>

The team ID to retrieve. Can also be passed as --team-id=<value>.

Yes

Example


make-cli teams create

Create a new team.

Options

Option
Description
Required

--name

Name for the new team

Yes

--organization-id

ID of the organization where the team will be created

Yes

--operations-limit

Maximum operations limit for the team

No

--transfer-limit

Maximum data transfer limit for the team

No

Example


make-cli teams delete

Delete a team.

Arguments

Argument
Description
Required

<team-id>

The team ID to delete. Can also be passed as --team-id=<value>.

Yes

Example


Organizations

Manage your organizations.


make-cli organizations list

List organizations for the current user.

Example


make-cli organizations get

Get details of a specific organization.

Arguments

Argument
Description
Required

<organization-id>

The organization ID to retrieve. Can also be passed as --organization-id=<value>.

Yes

Example


make-cli organizations create

Create a new organization.

Options

Option
Description
Required

--name

Name of the organization

Yes

--region-id

The ID of the region the organization will be created in

Yes

--timezone-id

The ID of the timezone

Yes

--country-id

The ID of the country

Yes

Example


make-cli organizations update

Update an existing organization.

Arguments

Argument
Description
Required

<organization-id>

The organization ID to update. Can also be passed as --organization-id=<value>.

Yes

Options

Option
Description
Required

--name

New name for the organization

No

--country-id

New country ID

No

--timezone-id

New timezone ID

No

Example


make-cli organizations delete

Delete an organization.

Arguments

Argument
Description
Required

<organization-id>

The organization ID to delete. Can also be passed as --organization-id=<value>.

Yes

Example


Users

Manage your users.


make-cli users me

Get details of the current user.

Example


Shared enumerations

Manage your shared enumerations.


make-cli enums countries

List all available countries.

Example


make-cli enums regions

List all available regions.

Example


make-cli enums timezones

List all available timezones.

Example

Last updated