Public
Documentation Settings

Dashy Backup Server

This is the API docs for communicating with Dashy App's Cloud Backup & Restore Server.

GETGet Config

dashy-sync-service.as93.net?backupId=BfXd-nMed-ieuS-Mi6X&subHash=3608bca1e44ea6

Returns the users (encrypted) configuration, for a given backup ID, and the latter part of the SHA256 hash of their passphrase.

PARAMS
backupId

BfXd-nMed-ieuS-Mi6X

subHash

3608bca1e44ea6

Example Request
curl
curl --location 'dashy-sync-service.as93.net?backupId=BfXd-nMed-ieuS-Mi6X&subHash=3608bca1e44ea6'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTSave New Config

dashy-sync-service.as93.net
Bodyraw (json)
json
{
    "userData": "xxxxxxxx",
    "subHash": "420abc69e45ea6"
}
Example Request
curl
curl --location 'dashy-sync-service.as93.net' \
--data '{
    "userData": "xxxxxxxx",
    "subHash": "420abc69e45ea6"
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

PUTUpdate Config

dashy-sync-service.as93.net
Bodyraw (json)
json
{
    "backupId": "BeuT-eeYf-Ynin-fduT",
    "userData": "xxxxxxxx",
    "subHash": "420abc69e45ea6"
}
Example Request
curl
curl --location --request PUT 'dashy-sync-service.as93.net' \
--data '{
    "backupId": "BeuT-eeYf-Ynin-fduT",
    "userData": "xxxxxxxx",
    "subHash": "420abc69e45ea6"
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

DELETEDelete Config

dashy-sync-service.as93.net?backupId=xxxx-xxxx-xxxx-xxxx&subHash=420abc69e45ea6
PARAMS
backupId

xxxx-xxxx-xxxx-xxxx

subHash

420abc69e45ea6

Example Request
curl
curl --location --request DELETE 'dashy-sync-service.as93.net?backupId=xxxx-xxxx-xxxx-xxxx&subHash=420abc69e45ea6'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers