Webhooks
MarkUp.io uses webhooks to notify external applications when events happen. For example you could notify a task management app when someone leaves a new comment in a Markup. The events available are:
| Event | Event Type |
|---|---|
| Comment Created | comment_created |
| Comment Updated | comment_updated |
| Comment Screenshot Failed | comment_screenshot_failed |
| Comment Resolved | comment_resolved |
| Comment Unresolved | comment_unresolved |
| Comment Reply Created | comment_reply_created |
| Markup Created | markup_created |
| Markup Status Changed | markup_status_changed |
| Set Project Read Only | set_project_read_only |
| Project Review Created | project_review_created |
Event reference
| Event | When it fires | Payload |
|---|---|---|
| Comment Created | A new comment is added to a Markup | data.markup, data.user, data.comment |
| Comment Updated | A comment’s initial message is edited (text or attachments) or its screenshot finishes processing | data.markup, data.user, data.comment |
| Comment Screenshot Failed | An asynchronously-rendered comment screenshot cannot be produced (e.g. the target page is unrenderable). No screenshot field will appear on the comment. | data.markup, data.user, data.comment |
| Comment Resolved | A comment is marked resolved | data.markup, data.user, data.comment |
| Comment Unresolved | A comment is reopened (unresolved) | data.markup, data.user, data.comment |
| Comment Reply Created | A reply is added to a comment thread | data.markup, data.user, data.comment, data.message |
| Markup Created | A new Markup is created | data.markup, data.user |
| Markup Status Changed | A Markup’s status changes (e.g. open for review, approved) | data.markup, data.user |
| Set Project Read Only | A Markup is set to read-only | data.markup, data.user |
| Project Review Created | A project review is created | data.markup, data.user, optional data.comment (string) |
Notification events
MarkUp Created
Triggered when a new Markup is created.
Example
{
"webhookUrl": "https://example.com/webhook",
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"type": "markup_created",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"createdAt": "2023-02-15T20:41:54.137Z",
"data": {
"markup": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"thumbnailUrl": "https://images.markup.io/green/project-images/9dfee13a-42ef-4396-b564-e865e835e33f",
"name": "markup.io",
"webpageUrl": "https://markup.io",
"commentingUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"lastActivityAt": "2023-02-15T20:41:54.137Z",
"parentFolderId": "6a6360e6-fb79-416a-b765-6667f380b98e"
},
"user": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"name": "John Doe",
"email": "[email protected]"
}
}
}
}Parameters
| Option | Type | |
|---|---|---|
| id | string | |
| webhookUrl | string | |
| type | 'markup_created' | |
| workspaceId | string | |
| data.markup | ||
| data.user |
Comment Created
Triggered when a comment is created within a Markup.
Example
{
"webhookUrl": "https://example.com/webhook",
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"type": "comment_created",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"createdAt": "2023-02-15T20:41:54.137Z",
"data": {
"markup": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"thumbnailUrl": "https://images.markup.io/green/project-images/9dfee13a-42ef-4396-b564-e865e835e33f",
"name": "markup.io",
"webpageUrl": "https://markup.io",
"commentingUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"lastActivityAt": "2023-02-15T20:41:54.137Z",
"parentFolderId": "6a6360e6-fb79-416a-b765-6667f380b98e"
},
"user": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"name": "John Doe",
"email": "[email protected]"
},
"comment": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:26.830Z",
"id": "dca005c2-0c69-4166-aae1-27ec76db94ef",
"firstMessage": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:26.830Z",
"id": "71734093-b557-46cf-8678-a028fbe6a8c8",
"text": "Could you change the color of the button to red?",
"attachments": []
},
"resolved": true,
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191/#thread/dca005c2-0c69-4166-aae1-27ec76db94ef",
"messageCount": 1
}
}
}
}Comment Updated
Triggered when an existing comment changes. This fires when the comment’s initial message is edited (its text and/or attachments), and when an asynchronously-rendered screenshot finishes processing and is attached to the comment (e.g. webpage screenshots produced after the comment was created). The payload mirrors comment_created; use it to refresh your stored copy of the comment, including the screenshot once it becomes available.
Example
{
"webhookUrl": "https://example.com/webhook",
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"type": "comment_updated",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"createdAt": "2023-02-15T20:42:10.512Z",
"data": {
"markup": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:42:10.512Z",
"thumbnailUrl": "https://images.markup.io/green/project-images/9dfee13a-42ef-4396-b564-e865e835e33f",
"name": "markup.io",
"webpageUrl": "https://markup.io",
"commentingUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"lastActivityAt": "2023-02-15T20:42:10.512Z",
"parentFolderId": "6a6360e6-fb79-416a-b765-6667f380b98e"
},
"user": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"name": "John Doe",
"email": "[email protected]"
},
"comment": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:30.512Z",
"id": "dca005c2-0c69-4166-aae1-27ec76db94ef",
"firstMessage": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:26.830Z",
"id": "71734093-b557-46cf-8678-a028fbe6a8c8",
"text": "Could you change the color of the button to red?",
"attachments": []
},
"resolved": false,
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191/#thread/dca005c2-0c69-4166-aae1-27ec76db94ef",
"messageCount": 1,
"screenshot": {
"id": "0d6c1f6a-2c0a-4d0a-9d2e-2b6f0a3c5e7d",
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:30.512Z",
"url": "https://images.markup.io/green/screenshots/0d6c1f6a-2c0a-4d0a-9d2e-2b6f0a3c5e7d",
"type": "native",
"etag": "\"9a0364b9e99bb480dd25e1f0284c8555\"",
"width": 1280,
"height": 720,
"filesize": 245678,
"mimeType": "image/png"
}
}
}
}Comment Screenshot Failed
Triggered when the asynchronous screenshot for a comment cannot be produced (for example, the target page is unrenderable by our screenshot service, blocks bots, or executes scripts the service can’t handle). This is the terminal signal that no screenshot will arrive for the comment — treat it as a peer of comment_updated: same payload shape, but the comment’s screenshot field will not become populated. The comment itself still exists and remains usable.
Example
{
"webhookUrl": "https://example.com/webhook",
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"type": "comment_screenshot_failed",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"createdAt": "2023-02-15T20:42:20.512Z",
"data": {
"markup": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:42:20.512Z",
"thumbnailUrl": "https://images.markup.io/green/project-images/9dfee13a-42ef-4396-b564-e865e835e33f",
"name": "markup.io",
"webpageUrl": "https://markup.io",
"commentingUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"lastActivityAt": "2023-02-15T20:42:20.512Z",
"parentFolderId": "6a6360e6-fb79-416a-b765-6667f380b98e"
},
"user": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"name": "John Doe",
"email": "[email protected]"
},
"comment": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:26.830Z",
"id": "dca005c2-0c69-4166-aae1-27ec76db94ef",
"firstMessage": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:26.830Z",
"id": "71734093-b557-46cf-8678-a028fbe6a8c8",
"text": "Could you change the color of the button to red?",
"attachments": []
},
"resolved": false,
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191/#thread/dca005c2-0c69-4166-aae1-27ec76db94ef",
"messageCount": 1
}
}
}Parameters
| Option | Type | |
|---|---|---|
| id | string | |
| webhookUrl | string | |
| type | 'comment_screenshot_failed' | |
| workspaceId | string | |
| data.markup | ||
| data.user | ||
| data.comment |
Comment Resolved
Triggered when a comment is resolved within a Markup.
Example
{
"webhookUrl": "https://example.com/webhook",
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"type": "comment_resolved",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"createdAt": "2023-02-15T20:41:54.137Z",
"data": {
"markup": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"thumbnailUrl": "https://images.markup.io/green/project-images/9dfee13a-42ef-4396-b564-e865e835e33f",
"name": "markup.io",
"webpageUrl": "https://markup.io",
"commentingUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"lastActivityAt": "2023-02-15T20:41:54.137Z",
"parentFolderId": "6a6360e6-fb79-416a-b765-6667f380b98e"
},
"user": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"name": "John Doe",
"email": "[email protected]"
},
"comment": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:26.830Z",
"id": "dca005c2-0c69-4166-aae1-27ec76db94ef",
"firstMessage": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:26.830Z",
"id": "71734093-b557-46cf-8678-a028fbe6a8c8",
"text": "Could you change the color of the button to red?",
"attachments": []
},
"resolved": true,
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191/#thread/dca005c2-0c69-4166-aae1-27ec76db94ef",
"messageCount": 1
}
}
}
}Parameters
| Option | Type | |
|---|---|---|
| id | string | |
| webhookUrl | string | |
| type | 'comment_resolved' | |
| workspaceId | string | |
| data.markup | ||
| data.user | ||
| data.comment |
Comment Unresolved
Triggered when a comment is unresolved within a Markup.
Example
{
"webhookUrl": "https://example.com/webhook",
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"type": "comment_unresolved",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"createdAt": "2023-02-15T20:41:54.137Z",
"data": {
"markup": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"thumbnailUrl": "https://images.markup.io/green/project-images/9dfee13a-42ef-4396-b564-e865e835e33f",
"name": "markup.io",
"webpageUrl": "https://markup.io",
"commentingUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"lastActivityAt": "2023-02-15T20:41:54.137Z",
"parentFolderId": "6a6360e6-fb79-416a-b765-6667f380b98e"
},
"user": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"name": "John Doe",
"email": "[email protected]"
},
"comment": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:26.830Z",
"id": "dca005c2-0c69-4166-aae1-27ec76db94ef",
"firstMessage": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:26.830Z",
"id": "71734093-b557-46cf-8678-a028fbe6a8c8",
"text": "Could you change the color of the button to red?",
"attachments": []
},
"resolved": false,
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191/#thread/dca005c2-0c69-4166-aae1-27ec76db94ef",
"messageCount": 1
}
}
}
}Parameters
| Option | Type | |
|---|---|---|
| id | string | |
| webhookUrl | string | |
| type | 'comment_unresolved' | |
| workspaceId | string | |
| data.markup | ||
| data.user | ||
| data.comment |
Comment Reply Created
Triggered when a reply is created within a comment.
Example
{
"webhookUrl": "https://example.com/webhook",
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"type": "comment_reply_created",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"createdAt": "2023-02-15T20:41:54.137Z",
"data": {
"message" : {
"message": {
"createdAt": "2023-02-16T10:11:15.711Z",
"modifiedAt": "2023-02-16T10:11:15.711Z",
"id": "4fefda85-192f-43cf-8d4b-e909c8e475d5",
"text": "Yes of course!",
"attachments": []
}
},
"markup": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"thumbnailUrl": "https://images.markup.io/green/project-images/9dfee13a-42ef-4396-b564-e865e835e33f",
"name": "markup.io",
"webpageUrl": "https://markup.io",
"commentingUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"lastActivityAt": "2023-02-15T20:41:54.137Z",
"parentFolderId": "6a6360e6-fb79-416a-b765-6667f380b98e"
},
"user": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"name": "John Doe",
"email": "[email protected]"
},
"comment": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:26.830Z",
"id": "dca005c2-0c69-4166-aae1-27ec76db94ef",
"firstMessage": {
"createdAt": "2023-02-16T10:01:26.830Z",
"modifiedAt": "2023-02-16T10:01:26.830Z",
"id": "71734093-b557-46cf-8678-a028fbe6a8c8",
"text": "Could you change the color of the button to red?",
"attachments": []
},
"resolved": false,
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191/#thread/dca005c2-0c69-4166-aae1-27ec76db94ef",
"messageCount": 1
}
}
}
}Parameters
| Option | Type | |
|---|---|---|
| id | string | |
| webhookUrl | string | |
| type | 'comment_reply_created' | |
| workspaceId | string | |
| data.markup | ||
| data.user | ||
| data.comment |
Markup Status Changed
Triggered when a Markup’s status changes (e.g. open for review, approved).
Example
{
"webhookUrl": "https://example.com/webhook",
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"type": "markup_status_changed",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"createdAt": "2023-02-15T20:41:54.137Z",
"data": {
"markup": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"thumbnailUrl": "https://images.markup.io/green/project-images/9dfee13a-42ef-4396-b564-e865e835e33f",
"name": "markup.io",
"webpageUrl": "https://markup.io",
"commentingUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"lastActivityAt": "2023-02-15T20:41:54.137Z",
"parentFolderId": "6a6360e6-fb79-416a-b765-6667f380b98e"
},
"user": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"name": "John Doe",
"email": "[email protected]"
}
}
}Parameters
| Option | Type | |
|---|---|---|
| id | string | |
| webhookUrl | string | |
| type | 'markup_status_changed' | |
| workspaceId | string | |
| data.markup | ||
| data.user |
Set Project Read Only
Triggered when a Markup is set to read-only.
Example
{
"webhookUrl": "https://example.com/webhook",
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"type": "set_project_read_only",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"createdAt": "2023-02-15T20:41:54.137Z",
"data": {
"markup": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"thumbnailUrl": "https://images.markup.io/green/project-images/9dfee13a-42ef-4396-b564-e865e835e33f",
"name": "markup.io",
"webpageUrl": "https://markup.io",
"commentingUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"lastActivityAt": "2023-02-15T20:41:54.137Z",
"parentFolderId": "6a6360e6-fb79-416a-b765-6667f380b98e"
},
"user": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"name": "John Doe",
"email": "[email protected]"
}
}
}Parameters
| Option | Type | |
|---|---|---|
| id | string | |
| webhookUrl | string | |
| type | 'set_project_read_only' | |
| workspaceId | string | |
| data.markup | ||
| data.user |
Project Review Created
Triggered when a project review is created.
Example
{
"webhookUrl": "https://example.com/webhook",
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"type": "project_review_created",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"createdAt": "2023-02-15T20:41:54.137Z",
"data": {
"markup": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"thumbnailUrl": "https://images.markup.io/green/project-images/9dfee13a-42ef-4396-b564-e865e835e33f",
"name": "markup.io",
"webpageUrl": "https://markup.io",
"commentingUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"appUrl": "https://app.markup.io/markup/ce10f176-6a68-42eb-9ce2-718aae4ba191",
"workspaceId": "355fe681-10d5-489e-8964-41b812d1d0fe",
"lastActivityAt": "2023-02-15T20:41:54.137Z",
"parentFolderId": "6a6360e6-fb79-416a-b765-6667f380b98e"
},
"user": {
"id": "ce10f176-6a68-42eb-9ce2-718aae4ba191",
"createdAt": "2023-02-15T20:41:54.137Z",
"modifiedAt": "2023-02-15T20:41:54.137Z",
"name": "John Doe",
"email": "[email protected]"
},
"comment": "Please review the latest changes."
}
}Parameters
| Option | Type | |
|---|---|---|
| id | string | |
| webhookUrl | string | |
| type | 'project_review_created' | |
| workspaceId | string | |
| data.markup | ||
| data.user | ||
| data.comment optional | string |
Related types
MarkupNotification
| Option | Type | |
|---|---|---|
| id | string | |
| createdAt | Iso8601Timestamp | |
| modifiedAt | Iso8601Timestamp | |
| deletedAt optional | Iso8601Timestamp | |
| webpageUrl optional | string | |
| name | string | |
| thumbnailUrl | string | |
| appUrl | string | |
| workspaceId | string | |
| parentFolderId | string | |
| commentingUrl | string |
UserNotification
| Option | Type | |
|---|---|---|
| id | string | |
| createdAt | Iso8601Timestamp | |
| modifiedAt | Iso8601Timestamp | |
| deletedAt optional | Iso8601Timestamp | |
| name | string | |
| email optional | string | |
| guest | boolean | |
| avatarUrl optional | string |
CommentNotification
| Option | Type | |
|---|---|---|
| id | string | |
| createdAt | Iso8601Timestamp | |
| modifiedAt | Iso8601Timestamp | |
| deletedAt optional | Iso8601Timestamp | |
| resolved | boolean | |
| firstMessage | ||
| appUrl | string | |
| messageCount | number | |
| screenshot optional |
MessageNotification
| Option | Type | |
|---|---|---|
| id | string | |
| createdAt | Iso8601Timestamp | |
| modifiedAt | Iso8601Timestamp | |
| deletedAt optional | Iso8601Timestamp | |
| text | string | |
| attachments optional | ||
| screenshot optional |
MessageScreenshotNotification
| Option | Type | |
|---|---|---|
| id | string | |
| createdAt | Iso8601Timestamp | |
| modifiedAt | Iso8601Timestamp | |
| deletedAt optional | Iso8601Timestamp | |
| url | string | |
| etag | string | |
| mimeType | string | |
| width | number | |
| height | number | |
| filesize | number | |
| type | `extension`|`native` |
MessageAttachmentNotification
| Option | Type | |
|---|---|---|
| id | string | |
| createdAt | Iso8601Timestamp | |
| modifiedAt | Iso8601Timestamp | |
| deletedAt optional | Iso8601Timestamp | |
| url | string | |
| etag | string | |
| mimeType | string | |
| originalFilename | string | |
| filesize | number |