Asana · Schema

TeamAddUserRequest

A user identification object for specification with the addUser/removeUser endpoints.

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
user string A string identifying a user. This can either be the string "me", an email, or the gid of a user.
View JSON Schema on GitHub

JSON Schema

asana-teamadduserrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TeamAddUserRequest",
  "title": "TeamAddUserRequest",
  "type": "object",
  "description": "A user identification object for specification with the addUser/removeUser endpoints.",
  "properties": {
    "user": {
      "description": "A string identifying a user. This can either be the string \"me\", an email, or the gid of a user.",
      "type": "string",
      "example": "12345"
    }
  }
}