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
List media requests log
GET
/
frontend
/
api
/
v1
/
media
/
log
Copy
Ask AI
curl --request GET \
--url https://{host}/frontend/api/v1/media/log \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"filter": {
"created": {
"from": "2025-06-19T10:52:53.815938106Z",
"to": "2025-06-20T10:52:53.815938106Z"
},
"request": "<string>",
"status": [
"success"
],
"status-ffprobe": [
"success"
],
"status-mediainfo": [
"success"
],
"status-probe-report": [
"success"
],
"url": "<string>",
"user-id": [
1
]
},
"log": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"send": "2023-11-07T05:31:56Z",
"status": "success",
"status-ffprobe": "success",
"status-mediainfo": "success",
"status-probe-report": "success",
"url": "<string>",
"user-id": 1
}
],
"pagination": {
"count": 0,
"limit": 10,
"page": 1,
"total": 0
},
"sort": {
"field": "send",
"order": "desc"
}
}
Authorizations
API Key Security (Header).
Query Parameters
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 \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"filter": {
"created": {
"from": "2025-06-19T10:52:53.815938106Z",
"to": "2025-06-20T10:52:53.815938106Z"
},
"request": "<string>",
"status": [
"success"
],
"status-ffprobe": [
"success"
],
"status-mediainfo": [
"success"
],
"status-probe-report": [
"success"
],
"url": "<string>",
"user-id": [
1
]
},
"log": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"send": "2023-11-07T05:31:56Z",
"status": "success",
"status-ffprobe": "success",
"status-mediainfo": "success",
"status-probe-report": "success",
"url": "<string>",
"user-id": 1
}
],
"pagination": {
"count": 0,
"limit": 10,
"page": 1,
"total": 0
},
"sort": {
"field": "send",
"order": "desc"
}
}
Assistant
Responses are generated using AI and may contain mistakes.