-
Notifications
You must be signed in to change notification settings - Fork 0
/
webhook.json
48 lines (48 loc) · 1.2 KB
/
webhook.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "Webhook",
"type": "object",
"properties": {
"uuid": {
"type": "string",
"description": "UUID for the notification"
},
"type": {
"type": "string",
"description": "Notification type",
"enum": [
"loginLink",
"resetPasswordLink",
"verifySetPasswordLink",
"changeEmailLink",
"verifyAccount",
"profileUpdate",
"passwordUpdate",
"emailUpdate"
]
},
"data": {
"type": "object",
"description": "Data relating to the notification type"
},
"checksum": {
"type": "string",
"description": "sha1 checksum of the payload"
},
"verification": {
"type": "string",
"description": "sha1 of the checksum + verificationKey"
},
"created": {
"type": "number",
"description": "Timestamp of when the webhook was created, measured in seconds since the Unix epoch"
},
"webhookVersion": {
"type": "string",
"description": "The version of webhook notifications used to render this information"
},
"projectId": {
"type": "string",
"description": "The ID of the project this webhook originated from"
}
}
}