mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
parent
3c80621dac
commit
886e9ab511
1 changed files with 5 additions and 2 deletions
|
@ -571,13 +571,16 @@
|
||||||
"description": "Which event should be received by this endpoint",
|
"description": "Which event should be received by this endpoint",
|
||||||
"properties": {
|
"properties": {
|
||||||
"everything": {
|
"everything": {
|
||||||
"type": "string",
|
"type": "boolean",
|
||||||
"description": "If true, the endpoint will receive all events related to the store.",
|
"description": "If true, the endpoint will receive all events related to the store.",
|
||||||
"nullable": false,
|
"nullable": false,
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
"specificEvents": {
|
"specificEvents": {
|
||||||
"type": "string",
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"description": "If `everything` is false, the specific events that the endpoint is interested in. Current events are: `InvoiceCreated`, `InvoiceReceivedPayment`, `InvoiceProcessing`, `InvoiceExpired`, `InvoiceSettled`, `InvoiceInvalid`.",
|
"description": "If `everything` is false, the specific events that the endpoint is interested in. Current events are: `InvoiceCreated`, `InvoiceReceivedPayment`, `InvoiceProcessing`, `InvoiceExpired`, `InvoiceSettled`, `InvoiceInvalid`.",
|
||||||
"nullable": false
|
"nullable": false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue