AccessRequest
Property | Type | Description |
---|---|---|
gid | string | Globally unique identifier of the resource, as a string. |
resource_type | string | The base type of this resource. |
message | string | The message included in the access request, if any. |
approval_status | string | The current approval status of the request. Click to show all enum values
|
requester | object | A user object represents an account in Asana that can be given access to various workspaces, projects, and tasks. |
requester.gid | string | Globally unique identifier of the resource, as a string. |
requester.resource_type | string | The base type of this resource. |
requester.name | string | Read-only except when same user as requester. The user's name. |
target | object | A target id object represents the target resource that the requester wants access to. |
target.gid | string | Globally unique identifier of the resource, as a string. |
target.resource_type | string | The base type of this resource. |
Example JSON for AccessRequest
:
{
"gid": "12345",
"resource_type": "access_request",
"message": "Please grant me access to this resource.",
"approval_status": "pending",
"requester": {
"gid": "12345",
"resource_type": "user",
"name": "Greg Sanchez"
},
"target": {
"gid": "12345",
"resource_type": "project"
}
}