-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebhook.json
56 lines (56 loc) · 1.42 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
49
50
51
52
53
54
55
56
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"name": "Webhook",
"type": "object",
"properties": {
"uuid": {
"type": "string",
"description": "UUID for the notification"
},
"type": {
"type": "string",
"description": "Notification type",
"enum": [
"chargeCreated",
"chargeModified",
"chargeTransaction",
"chargeCancel",
"chargeExpired",
"refundExpired",
"methodCreated",
"methodModified",
"methodRefreshed",
"methodArchived",
"methodLocked",
"methodUnlocked",
"fraudScan",
"verify",
"transactionError"
]
},
"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"
}
}
}