WorkspaceCompact
Property | Type | Description |
---|---|---|
gid | string | Globally unique identifier of the resource, as a string. |
resource_type | string | The base type of this resource. |
name | string | The name of the workspace. |
Example JSON for WorkspaceCompact
:
{
"gid": "12345",
"resource_type": "workspace",
"name": "My Company Workspace"
}
WorkspaceResponse
Property | Type | Description |
---|---|---|
gid | string | Globally unique identifier of the resource, as a string. |
resource_type | string | The base type of this resource. |
name | string | The name of the workspace. |
email_domains | array | The email domains that are associated with this workspace. |
email_domains[] | string | |
is_organization | boolean | Whether the workspace is an organization. |
Example JSON for WorkspaceResponse
:
{
"gid": "12345",
"resource_type": "workspace",
"name": "My Company Workspace",
"email_domains": [
"asana.com"
],
"is_organization": false
}