mirror of
https://codeberg.org/SeedDMS/paperless
synced 2025-02-06 15:05:46 +00:00
18 lines
540 B
Markdown
18 lines
540 B
Markdown
# Testing the API
|
|
|
|
These scripts can be used to test almost all endpoints of the
|
|
paperless-ngx API.
|
|
|
|
In order to use them, create a file `credentials` and define `AUTH` and
|
|
`URL` in it. `URL` is the base url of the restapi service. `AUTH` are the
|
|
credentials passed in the http header `Authorization`. It can be a basic
|
|
authentication, a paperless token or a regular SeedDMS key.
|
|
|
|
Example:
|
|
|
|
URL="http://my.seeddms.org/restapi/index.php"
|
|
AUTH="my seeddms api key"
|
|
#AUTH="Token <paperless token>"
|
|
#AUTH="Basic <credentials>"
|
|
|