Auth
- PUTUpdate current user password
- POSTAuthenticate user by oauth provider token
- GETGet list of active sessions
- DELDelete all active sessions
- DELDelete active session
- POSTAuthenticate user by username(email) and password
- DELInvalidate current JWT token session or invalidate all sessions
- POSTVerify Sign-up email
- PUTUpdate sub user password
Media
Statistics
Media
Get request log entry by id
GET
/
frontend
/
api
/
v1
/
media
/
log
/
{log-request-id}
Copy
Ask AI
curl --request GET \
--url https://{host}/frontend/api/v1/media/log/{log-request-id} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"ffprobe-response": "<string>",
"ffprobe-response-type": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"mediainfo-response": "<string>",
"mediainfo-response-type": "<string>",
"probe-report-response": "<string>",
"probe-report-response-type": "<string>",
"request": "<string>",
"send": "2023-11-07T05:31:56Z",
"status": "success",
"status-ffprobe": "success",
"status-mediainfo": "success",
"status-probe-report": "success",
"url": "<string>",
"user-id": 1
}
Authorizations
API Key Security (Header).
Path Parameters
Log Request ID.
Response
200
application/json
OK
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://{host}/frontend/api/v1/media/log/{log-request-id} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"ffprobe-response": "<string>",
"ffprobe-response-type": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"mediainfo-response": "<string>",
"mediainfo-response-type": "<string>",
"probe-report-response": "<string>",
"probe-report-response-type": "<string>",
"request": "<string>",
"send": "2023-11-07T05:31:56Z",
"status": "success",
"status-ffprobe": "success",
"status-mediainfo": "success",
"status-probe-report": "success",
"url": "<string>",
"user-id": 1
}
Assistant
Responses are generated using AI and may contain mistakes.