Create a new config instance.
| Scope | Required |
|---|---|
config_instances:write | Yes |
The API key to use for authentication.
The API version the client was built against.
"2026-03-09.tetons"
Fields to expand on the config instance resource.
content, config_schema, config_type ["content"]Successfully created the config instance.
The object type, which is always config_instance.
config_instance "config_instance"
ID of the config instance.
"cfg_inst_123"
The name of the config type.
"Motion Control"
The file path to deploy the config instance relative to /srv/miru/config_instances. v1/motion-control.json would deploy to /srv/miru/config_instances/v1/motion-control.json.
"/v1/motion-control.json"
The timestamp of when the config instance was created.
"2021-01-01T00:00:00Z"
ID of the config schema which the config instance must adhere to.
"cfg_sch_123"
ID of the config type which the config instance (and its schema) is a part of.
"cfg_type_123"
Expand the config schema using 'expand=config_schema' in the query string.
{
"object": "config_schema",
"id": "cfg_sch_123",
"digest": "sha256:1234567890",
"config_type_name": "Motion Control",
"instance_filepath": "/v1/motion-control.json",
"created_at": "2021-01-01T00:00:00Z",
"updated_at": "2021-01-01T00:00:00Z",
"config_type_id": "cfg_typ_123",
"language": "jsonschema",
"format": "json"
}Expand the config type using 'expand=config_type' in the query string.
{
"object": "config_type",
"id": "cfg_typ_123",
"name": "Motion Control",
"slug": "motion-control",
"created_at": "2021-01-01T00:00:00Z",
"updated_at": "2021-01-01T00:00:00Z",
"created_by_id": "usr_123",
"updated_by_id": "usr_123"
}The configuration values associated with the config instance. Expand the content using 'expand=content' in the query string.
{
"format": "json",
"data": "{\n \"enable_autonomy\": true,\n \"enable_remote_control\": true,\n \"max_payload_kg\": 10.0\n}\n"
}