Folders
Request access to folder
An actor
triggers this event when they request access to a folder.
This request is sent to the owner
of the folder, which is the creator of the
folder or the user that inherited it after another user left their team.
type
string
The value for this can only be REQUEST_FOLDER_ACCESS
.
owner
AuditLogUser
A Canva user.
Properties of owner
id
string
The user ID.
display_name
string
The display name of the user.
For privacy reasons, this field is redacted for users outside of your organization. Rarely, it may also be unavailable for technical reasons.
email
string
The email address of the user.
For privacy reasons, this field is redacted for users outside of your organization. Rarely, it may also be unavailable for technical reasons.
Example
{"id": ...,"timestamp": ...,"actor": ...,"target": ...,"action": {"type": "REQUEST_FOLDER_ACCESS","owner": {"id": "UXoqDbwwSbQ","display_name": "Jane Doe",}},"outcome": ...,"context": ...}
Grant access to folder
An actor
(the folder owner
) triggers this event when they grant the requester
access to their folder.
type
string
The value for this can only be GRANT_FOLDER_ACCESS
.
requester
AuditLogUser
A Canva user.
Properties of requester
id
string
The user ID.
display_name
string
The display name of the user.
For privacy reasons, this field is redacted for users outside of your organization. Rarely, it may also be unavailable for technical reasons.
email
string
The email address of the user.
For privacy reasons, this field is redacted for users outside of your organization. Rarely, it may also be unavailable for technical reasons.
access
string
A user's access level for a folder. This can be one of the following:
VIEW
: The user can view the folder and its contents.EDIT
: The user can view and edit the folder and its contents.ADMIN
: The user can view, edit, and modify access to the folder and its contents.
Example
{"id": ...,"timestamp": ...,"actor": ...,"target": ...,"action": {"type": "GRANT_FOLDER_ACCESS","requester": {"id": "UXoqDbwwSbQ","display_name": "Jane Doe",},"access": "VIEW"},"outcome": ...,"context": ...}