mirror of
https://codeberg.org/SeedDMS/paperless
synced 2024-11-26 15:32:08 +00:00
11 lines
237 B
Bash
Executable File
11 lines
237 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ./credentials
|
|
|
|
curl --silent -X POST "${URL}/api/saved_views/" \
|
|
-H 'Content-Type: application/json' \
|
|
-H "Authorization: ${AUTH}" \
|
|
-d '{"id":0,"name":"autoview","username":"admin","password":"admin"}'
|
|
# | jq '.'
|
|
|