Skip to main content

The Work object

Attributes#

NameDescription
id (string)Unique identifier for the object
slug (string)Unique URL-friendly identifier (generated based on name)
name (string)The work's name
owner (Object)The work's owner
discardedAt (string)The work's discard timestamp. Works cannot be deleted, they are instead discarded and still accessible after.
createdAt (string)The work's creation timestamp
updatedAt (string)The work's last update timestamp
owner (User)The tenant's author

Object payload#

{
"id": "X",
"slug": "my-work",
"name": "My work",
"description": "",
"createdAt": "2021-05-19T07:53:14Z",
"updatedAt": "2021-05-20T08:20:00Z",
"discardedAt": "2021-05-20T08:20:00Z",
"owner": {
"firstName": "John",
"lastName": "Doe",
"email": "john@doe.com"
}
}