blob: 3aa517966b916483dbdb537e0a8052e66b025eba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
curl -H "API_KEY: ${FS_TRACER_API_KEY}" -X POST -d '
{
"timestamp": "2020-01-02T15:04:05Z",
"absolute_path": "/home/user/file.txt",
"contents": "Hello, World!"
}
' http://leunam.dev:9999/api/v1/file/
curl -H "API_KEY: ${FS_TRACER_API_KEY}" -X GET http://leunam.dev:9999/api/v1/file/?path=%2Fhome%2Fuser%2Ffile.txt
|