Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-02-01 18:52:10 +0300
committerJoas Schilling <coding@schilljs.com>2017-03-29 11:59:17 +0300
commit0557efa226093214c329101d712f49d5e3433ff8 (patch)
tree3890c5d46e522658d48dc4730b2648a5977a6efc /docs
parented7fc81fd8740d228730a7a6da1296834f136501 (diff)
Add the signature to the remove request as well
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/push-v3.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/push-v3.md b/docs/push-v3.md
index 0aff058..dea6be3 100644
--- a/docs/push-v3.md
+++ b/docs/push-v3.md
@@ -159,13 +159,14 @@ The server replies with the following status codes:
## Unsubscribing at the Push Proxy
-The device sends the `deviceIdentifier` and the user´s `publicKey` (from the server´s response) to the Push Proxy:
+The device sends the `deviceIdentifier`, `deviceIdentifierSignature` and the user´s `publicKey` (from the server´s response) to the Push Proxy:
```json
DELETE /devices
{
"deviceIdentifier": "{{deviceIdentifier}}",
+ "deviceIdentifierSignature": "{{signature}}",
"userPublicKey": "{{userPublicKey}}"
}
```