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

Organization resources

Administer every resource in the organization.

These endpoints see and act on every map, workflow, connection and access token in the organization, whoever owns it. They exist for administration: auditing what exists, cleaning up after someone leaves, or handing a departing user's work to a colleague.

Endpoint
What it does

GET /v3/accounts/resources

List all resources in the organization

POST /v3/accounts/resources/delete-batch

Delete resources in batch

POST /v3/accounts/resources/transfer

Transfer resources to another user

Batch operations report failures per item

delete-batch and transfer return 200 even when some items fail. Each entry in the response carries success, and a failureReason when it is false — always check per-item results rather than relying on the status code.

Transferring before offboarding

transfer moves ownership to another user, which is the safe alternative to deleting someone's work when they leave. Send receiverUserId with the list of resources.

Endpoints

List all resources in the organization

get
/v3/accounts/resources

Lists every map, workflow, connection or access token in the organization, regardless of owner.

Requires the Superadmin role.

Authorizations
AuthorizationstringRequired

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

Query parameters
resourceTypestring · enumRequiredPossible values:
qstring · min: 1Optional

Free-text search.

orderBystring · enumOptionalDefault: updatedAtPossible values:
orderDirectionstring · enumOptionalPossible values:
pageinteger · min: 1OptionalDefault: 1
pageSizeintegerOptionalDefault: 10
Responses
200

The resources. Access tokens are masked to their last 5 characters.

application/json
get/v3/accounts/resources

Delete resources in batch

post
/v3/accounts/resources/delete-batch

Deletes several resources at once.

Individual failures are reported per item — the request still returns 200. Check success on each entry.

Requires the Superadmin role.

Authorizations
AuthorizationstringRequired

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

Bodyobject · ResourceRef[]
idstringRequired
resourceTypestring · enumRequiredPossible values:
Responses
200

The result for each resource.

application/json
idstringOptional
resourceTypestring · enumOptionalPossible values:
successbooleanOptional
failureReasonstringOptional

Only present when success is false.

post/v3/accounts/resources/delete-batch

Transfer resources to another user

post
/v3/accounts/resources/transfer

Moves ownership of several resources to another user.

Individual failures are reported per item — the request still returns 200. Check success on each entry.

Requires the Superadmin role.

Authorizations
AuthorizationstringRequired

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

Body
receiverUserIdstring · min: 1Required

The user who will own the resources.

Responses
200

The result for each resource.

application/json
idstringOptional
resourceTypestring · enumOptionalPossible values:
successbooleanOptional
failureReasonstringOptional

Only present when success is false.

post/v3/accounts/resources/transfer

Last updated

Was this helpful?