Asana · Schema

RemoveMembersRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
members string An array of strings identifying users. These can either be the string "me", an email, or the gid of a user.
View JSON Schema on GitHub

JSON Schema

asana-removemembersrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RemoveMembersRequest",
  "title": "RemoveMembersRequest",
  "type": "object",
  "required": [
    "members"
  ],
  "properties": {
    "members": {
      "description": "An array of strings identifying users. These can either be the string \"me\", an email, or the gid of a user.",
      "type": "string",
      "example": "521621,621373"
    }
  }
}