For the complete documentation index, see llms.txt. This page is also available as Markdown.

Maps and workflows

List and delete the maps and workflows you can access.

These endpoints cover the maps and workflows you have access to — your own, plus anything shared with you. To act across the whole organization regardless of owner, use Organization resources.

Both lists are paginated and support the same filters, so you can page through everything tagged a certain way or matching a search term.

Endpoint
What it does

GET /v3/organization-maps

List maps

DELETE /v3/organization-maps/{mapId}

Delete a map

GET /v3/organization-workflows

List workflows

DELETE /v3/organization-workflows/{workflowId}

Delete a workflow

These endpoints need an OAuth Access Token. See Authorization.

Filtering

search matches the title. tags takes a JSON-encoded array such as ["new","biz"]. privacy is private, shared or public for maps, and private or shared for workflows — workflows are never public.

Sort with order_by and order_direction, and page with page and page_size (default 12).

Deleting

You can only delete what you own, and only when nobody else has it locked — otherwise the request returns 403. Deletions are immediate and cannot be undone.

Endpoints

List maps

get
/v3/organization-maps

Lists the maps you have access to in your organization.

Authorizations
AuthorizationstringRequired

An API Access Token or an OAuth Access Token, sent as Authorization: Bearer <token>.

Query parameters
pageinteger · min: 1OptionalDefault: 1
page_sizeintegerOptionalDefault: 12
order_bystringOptionalExample: title
order_directionstring · enumOptionalPossible values:
searchstringOptional

Free-text search over the title.

Example: sales
privacystring · enumOptionalPossible values:
tagsstringOptional

A JSON-encoded array of tags to filter by.

Example: ["new", "biz"]
Responses
200

The maps.

application/json
get/v3/organization-maps

Delete a map

delete
/v3/organization-maps/{mapId}
Authorizations
AuthorizationstringRequired

An API Access Token or an OAuth Access Token, sent as Authorization: Bearer <token>.

Path parameters
mapIdstringRequired
Responses
204

The map was deleted.

No content

delete/v3/organization-maps/{mapId}

No content

List workflows

get
/v3/organization-workflows

Lists the workflows you have access to in your organization.

Authorizations
AuthorizationstringRequired

An API Access Token or an OAuth Access Token, sent as Authorization: Bearer <token>.

Query parameters
pageinteger · min: 1OptionalDefault: 1
page_sizeintegerOptionalDefault: 12
order_bystringOptionalExample: title
order_directionstring · enumOptionalPossible values:
searchstringOptional

Free-text search over the title.

Example: sales
privacystring · enumOptionalPossible values:
tagsstringOptional

A JSON-encoded array of tags to filter by.

Example: ["new", "biz"]
Responses
200

The workflows.

application/json
get/v3/organization-workflows

Delete a workflow

delete
/v3/organization-workflows/{workflowId}
Authorizations
AuthorizationstringRequired

An API Access Token or an OAuth Access Token, sent as Authorization: Bearer <token>.

Path parameters
workflowIdstringRequired
Responses
204

The workflow was deleted.

No content

delete/v3/organization-workflows/{workflowId}

No content

Last updated

Was this helpful?