Write
update_media
Batch update properties of media items in the outline.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| outlineId | string | — | Outline ID. Defaults to your own outline. |
| items | array | Yes | List of items to update. Each must include mediaId. |
Response
| Field | Type | What it means |
|---|---|---|
| outlineId | string | Resolved outline ID. |
| results | array | Array of result objects with ok status. |
Example
Request
json
{
"items": [{"mediaId": "media_123", "alt": "new alt"}]
}Response
json
{
"outlineId": "42",
"results": [{"mediaId": "media_123", "ok": true}]
}