Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

GET system/files/download/{uuid}

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

GET

Returns an

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/system/files/download/{{uuid}}

Parameters

Parameter

Data Type

Description

uuid
(required)

string

The UUID of the desired file to download.

Example Request

GET 

  1. https://192.168.10.53/api/5.0/system/files/download/dcb2267b-0595-5bab-a9af-37d81f85f0d8

 


DELETE users/config/{uuid}

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

DELETE

Delete a specific users configuration.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/users/config/{{uuid}}

Parameters

Parameter

Data Type

Description

uuid
(required)

string

The UUID of the users config to be deleted.

Example Request

DELETE 

  1. https://192.168.10.53/api/5.0/users/config/fe5e61a7-ead6-4bd1-983e-8322073995b1

{
    "data": {
        "success": true
    },
    "metadata": {}
}

 


POST system/files/command/backup

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

POST

Back’s up system files, configured according to the attached data request.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/system/files/command/backup

Example Request

POST 

  1. https://192.168.10.53/api/5.0/system/files/command/backup

Response

{
    "data": {
        "uuid": "f3341f06-6238-4cc6-9f02-eceb2b478a80",
        "created": 1644427178999,
        "type": "Db Backup",
        "state": "Running",
        "progress": 0,
        "attributes": {},
        "result": null
    },
    "metadata": {}
}
  • No labels