Asana SCIM
Provision and deprovision users and groups in an Asana Enterprise Domain through the SCIM 2.0 API.
Authentication
| Method | Kind | Status | Details |
|---|---|---|---|
| Service account token | api_key | available | — |
Call a tool
import { createClient } from "@open-connector/sdk";const oc = createClient({ baseUrl: "https://api.openconnector.dev", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({ slug: "ASANA_SCIM_CREATE_GROUP", connectedAccountId: "conn_...", arguments: { /* match this tool's input schema */ },});import Composio from "@composio/client";const composio = new Composio({ baseURL: "https://api.openconnector.dev/composio", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("ASANA_SCIM_CREATE_GROUP", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute ASANA_SCIM_CREATE_GROUP --data '{ }'Tool catalog
Available tools
14 callable operations
Create a groupASANA_SCIM_CREATE_GROUPCreates an Asana team from a SCIM Group resource.Connection
Creates an Asana team from a SCIM Group resource.
Authentication
Connected account requiredTags
Create a userASANA_SCIM_CREATE_USERCreates an Asana user when the submitted SCIM user does not already exist.Connection
Creates an Asana user when the submitted SCIM user does not already exist.
Authentication
Connected account requiredTags
Deprovision a userASANA_SCIM_DELETE_USERDeprovisions the selected user in Asana.Connection
Deprovisions the selected user in Asana.
Authentication
Connected account requiredTags
Get a groupASANA_SCIM_GET_GROUPRetrieves one SCIM group, mapped to an Asana team, by resource ID.Connection
Retrieves one SCIM group, mapped to an Asana team, by resource ID.
Authentication
Connected account requiredTags
Get the SCIM service provider configurationASANA_SCIM_GET_SERVICE_PROVIDER_CONFIGReturns read-only metadata describing Asana's supported SCIM capabilities.Connection
Returns read-only metadata describing Asana's supported SCIM capabilities.
Authentication
Connected account requiredTags
Get a userASANA_SCIM_GET_USERRetrieves one non-guest user in the Enterprise Domain by SCIM resource ID.Connection
Retrieves one non-guest user in the Enterprise Domain by SCIM resource ID.
Authentication
Connected account requiredTags
List groupsASANA_SCIM_LIST_GROUPSLists SCIM groups, which Asana maps to teams in the Enterprise Domain.Connection
Lists SCIM groups, which Asana maps to teams in the Enterprise Domain.
Authentication
Connected account requiredTags
List SCIM resource typesASANA_SCIM_LIST_RESOURCE_TYPESReturns read-only metadata describing the SCIM resource types supported by Asana.Connection
Returns read-only metadata describing the SCIM resource types supported by Asana.
Authentication
Connected account requiredTags
List SCIM schemasASANA_SCIM_LIST_SCHEMASReturns read-only metadata describing the SCIM schemas supported by Asana.Connection
Returns read-only metadata describing the SCIM schemas supported by Asana.
Authentication
Connected account requiredTags
List usersASANA_SCIM_LIST_USERSLists users in the Enterprise Domain. Guest users are not returned.Connection
Lists users in the Enterprise Domain. Guest users are not returned.
Authentication
Connected account requiredTags
Patch a groupASANA_SCIM_PATCH_GROUPApplies SCIM PatchOp operations to the selected group's attributes or members.Connection
Applies SCIM PatchOp operations to the selected group's attributes or members.
Authentication
Connected account requiredTags
Patch a userASANA_SCIM_PATCH_USERApplies SCIM PatchOp operations to a user, including deprovisioning with active=false.Connection
Applies SCIM PatchOp operations to a user, including deprovisioning with active=false.
Authentication
Connected account requiredTags
Replace a groupASANA_SCIM_REPLACE_GROUPReplaces the selected group's display name and membership attributes.Connection
Replaces the selected group's display name and membership attributes.
Authentication
Connected account requiredTags
Replace a userASANA_SCIM_REPLACE_USERReplaces a user's SCIM attributes or deprovisions the user when active is false.Connection
Replaces a user's SCIM attributes or deprovisions the user when active is false.
Authentication
Connected account requiredTags