Update a media file
Method: PUT
URL: https://example.com/<MIXPOST_CORE_PATH>/api/<workspaceUuid>/media/<mediaUuid>
Authorization: Bearer <token>
Body:
{
"alt_text": "example-alt-text"
}
Key | Format | Required | Description |
---|---|---|---|
alt_text | string | Alt Text. |
Response:
- 200
- 401
- 403
- 404
{
"success": true
}
{
"message": "Unauthenticated."
}
{
"message": "Access forbidden."
}
{
"message": "Workspace not found."
}
{
"message": "Media not found."
}