Media Library API Documentation
Media library management endpoints for uploading, browsing, and managing media files and folders.
Browse Media Library
POST/api.phpDEPRECATION WARNING
This endpoint is deprecated and will be removed in a future Octeth release. There are no alternative or replacement API endpoints available.
API Usage Notes
- Authentication required: User API Key
- Required permissions:
Media.Browse - Legacy endpoint access via
/api.phponly (no v1 REST alias configured)
Browse media library files and folders in a specified folder.
Request Body Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| Command | String | Yes | API command: media.browse |
| SessionID | String | No | Session ID obtained from login |
| APIKey | String | No | API key for authentication |
| FolderID | Integer | No | Parent folder ID to browse (default: 0 = root) |
curl -X POST https://example.com/api.php \
-H "Content-Type: application/json" \
-d '{
"Command": "media.browse",
"SessionID": "your-session-id",
"FolderID": 0
}'{
"Success": true,
"ErrorCode": 0,
"ErrorText": "",
"Folders": [
{
"ID": 123,
"Name": "My Folder",
"ParentFolderID": 0
}
],
"Files": [
{
"ID": 456,
"Name": "image.jpg",
"URL": "https://cdn.example.com/media/abc123"
}
]
}{
"Success": false,
"ErrorCode": [1]
}0: SuccessDelete Media File
POST/api.phpDEPRECATION WARNING
This endpoint is deprecated and will be removed in a future Octeth release. There are no alternative or replacement API endpoints available.
API Usage Notes
- Authentication required: User API Key or Admin API Key
- Required permissions:
Media.Delete - Legacy endpoint access via
/api.phponly (no v1 REST alias configured)
Delete a media file from the media library.
Request Body Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| Command | String | Yes | API command: media.delete |
| SessionID | String | No | Session ID obtained from login |
| APIKey | String | No | API key for authentication |
| MediaID | Integer | Yes | ID of the media file to delete |
curl -X POST https://example.com/api.php \
-H "Content-Type: application/json" \
-d '{
"Command": "media.delete",
"SessionID": "your-session-id",
"MediaID": 456
}'{
"Success": true,
"ErrorCode": 0
}{
"Success": false,
"ErrorCode": [1]
}0: Success
1: Missing required parameter: MediaID
2: Media file not found or permission deniedCreate Media Library Folder
POST/api.phpDEPRECATION WARNING
This endpoint is deprecated and will be removed in a future Octeth release. There are no alternative or replacement API endpoints available.
API Usage Notes
- Authentication required: User API Key
- Required permissions:
Media.Upload - Legacy endpoint access via
/api.phponly (no v1 REST alias configured)
Create a new folder in the media library.
Request Body Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| Command | String | Yes | API command: media.foldercreate |
| SessionID | String | No | Session ID obtained from login |
| APIKey | String | No | API key for authentication |
| FolderName | String | Yes | Name of the folder to create |
| ParentFolderID | Integer | Yes | Parent folder ID (use 0 for root level) |
curl -X POST https://example.com/api.php \
-H "Content-Type: application/json" \
-d '{
"Command": "media.foldercreate",
"SessionID": "your-session-id",
"FolderName": "My Images",
"ParentFolderID": 0
}'{
"Success": true,
"ErrorCode": 0,
"FolderID": 789
}{
"Success": false,
"ErrorCode": [1, 2]
}0: Success
1: Missing required parameter: FolderName
2: Missing required parameter: ParentFolderID
3: Parent folder not foundDelete Media Library Folder
POST/api.phpDEPRECATION WARNING
This endpoint is deprecated and will be removed in a future Octeth release. There are no alternative or replacement API endpoints available.
API Usage Notes
- Authentication required: User API Key
- Required permissions:
Media.Delete - Legacy endpoint access via
/api.phponly (no v1 REST alias configured)
Delete a folder and all its contents (files and subfolders) from the media library.
Request Body Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| Command | String | Yes | API command: media.folderdelete |
| SessionID | String | No | Session ID obtained from login |
| APIKey | String | No | API key for authentication |
| FolderID | Integer | Yes | ID of the folder to delete |
curl -X POST https://example.com/api.php \
-H "Content-Type: application/json" \
-d '{
"Command": "media.folderdelete",
"SessionID": "your-session-id",
"FolderID": 789
}'{
"Success": true,
"ErrorCode": 0
}{
"Success": false,
"ErrorCode": [1]
}0: Success
1: Missing required parameter: FolderID
2: Folder not found
3: Permission denied (folder does not belong to user)Retrieve Media File Details
POST/api.phpDEPRECATION WARNING
This endpoint is deprecated and will be removed in a future Octeth release. There are no alternative or replacement API endpoints available.
API Usage Notes
- Authentication required: User API Key
- Required permissions:
Media.Retrieve - Legacy endpoint access via
/api.phponly (no v1 REST alias configured)
Retrieve details of a specific media file from the media library.
Request Body Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| Command | String | Yes | API command: media.retrieve |
| SessionID | String | No | Session ID obtained from login |
| APIKey | String | No | API key for authentication |
| MediaID | Integer | Yes | ID of the media file to retrieve |
curl -X POST https://example.com/api.php \
-H "Content-Type: application/json" \
-d '{
"Command": "media.retrieve",
"SessionID": "your-session-id",
"MediaID": 456
}'{
"Success": true,
"ErrorCode": 0,
"Name": "image.jpg",
"Type": "image/jpeg",
"Size": 102400,
"URL": "https://cdn.example.com/media/abc123"
}{
"Success": false,
"ErrorCode": [1]
}0: Success
1: Missing required parameter: MediaID
2: Media file not foundUpload Media File
POST/api.phpDEPRECATION WARNING
This endpoint is deprecated and will be removed in a future Octeth release. There are no alternative or replacement API endpoints available.
API Usage Notes
- Authentication required: User API Key
- Required permissions:
Media.Upload - Legacy endpoint access via
/api.phponly (no v1 REST alias configured)
Upload a new media file to the media library.
Request Body Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| Command | String | Yes | API command: media.upload |
| SessionID | String | No | Session ID obtained from login |
| APIKey | String | No | API key for authentication |
| MediaData | String | Yes | Base64-encoded file data |
| MediaType | String | Yes | MIME type of the file (e.g., "image/jpeg") |
| MediaSize | Integer | Yes | File size in bytes |
| MediaName | String | Yes | File name |
curl -X POST https://example.com/api.php \
-H "Content-Type: application/json" \
-d '{
"Command": "media.upload",
"SessionID": "your-session-id",
"MediaData": "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==",
"MediaType": "image/png",
"MediaSize": 68,
"MediaName": "sample.png"
}'{
"Success": true,
"ErrorCode": 0,
"MediaID": 456
}{
"Success": false,
"ErrorCode": [1, 2, 3, 5]
}0: Success
1: Missing required parameter: MediaData
2: Missing required parameter: MediaType
3: Missing required parameter: MediaSize
4: File size exceeds maximum allowed limit
5: Missing required parameter: MediaName
Developer Portal