Organisations
CLI commands for organisations
organisations list
monoid organisations list [options]
List organisations
Options
| Flag | Description | Default |
|---|---|---|
--limit <n> | Max results | — |
--offset <n> | Skip n results | — |
Example
monoid organisations list [options]Example output
{
"data": [
{
"id": "org_123",
"name": "MONOid Team"
}
]
}organisations get
monoid organisations get [options] <id>
Get one organisations by id
Arguments
| Name | Required | Description |
|---|---|---|
id | Yes | — |
Options
| Flag | Description | Default |
|---|---|---|
--include-members <value> | Include/filter by includeMembers | false |
--include-plan <value> | Include/filter by includePlan | false |
Example
monoid organisations get [options] <id>Example output
{
"data": {
"id": "org_123",
"name": "MONOid Team"
}
}organisations create
monoid organisations create [options]
Create organisations
Options
| Flag | Description | Default |
|---|---|---|
--body <json> | Request body JSON (merged with flags) | — |
--id <value> | id | — |
--name <value> | name | — |
--if-not-exists | Return existing if match found | — |
Example
monoid organisations create [options]Example output
{
"data": {
"id": "org_123",
"name": "MONOid Team"
}
}organisations update
monoid organisations update [options] <id>
Update organisations
Arguments
| Name | Required | Description |
|---|---|---|
id | Yes | — |
Options
| Flag | Description | Default |
|---|---|---|
--body <json> | Request body JSON (merged with flags) | — |
--ids <ids> | Comma-separated IDs for bulk update (max 25) | — |
--name <value> | name | — |
Example
monoid organisations update [options] <id>Example output
{
"data": {
"id": "org_123",
"name": "MONOid Team"
}
}organisations delete
monoid organisations delete [options] <id>
Delete organisations
Arguments
| Name | Required | Description |
|---|---|---|
id | Yes | — |
Options
| Flag | Description | Default |
|---|---|---|
--ids <ids> | Comma-separated IDs for bulk delete (max 25) | — |
Example
monoid organisations delete [options] <id>Example output
{
"data": null,
"deleted": true
}Related API
See Organisations API reference for HTTP endpoint details.
© 2025 MONOid
All rights reserved.
All rights reserved.