Skip to main content
POST
/
api
/
cameras
/
{cameraId}
/
lut
/
import
Import a .cube LUT file to the camera
curl --request POST \
  --url http://{host}:{port}/api/cameras/{cameraId}/lut/import \
  --header 'Content-Type: application/json' \
  --data '
{
  "filePath": "/Users/me/luts/example.cube",
  "slot": 1
}
'
{
  "success": true,
  "message": "<string>",
  "data": {
    "slot": 123,
    "file": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://crsdk.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

cameraId
string
required

Camera identifier (e.g. D10F60149B0C)

Body

application/json
filePath
string
required

Absolute or working-directory-relative path to a .cube file on the host

Example:

"/Users/me/luts/example.cube"

slot
integer
default:1

Camera user LUT slot to import into

Required range: 1 <= x <= 16

Response

LUT import accepted (async)

success
boolean
required
message
string
required
data
object