Update Talking Photos
🖼️ Update your Talking Photos
The "Update Talking Photos" endpoint provides a powerful mechanism to modify the properties and content of a Talking Photo. With this endpoint, you can make dynamic changes to a Talking Photo, ensuring that it remains up-to-date and aligned with your evolving requirements.
Caution:
Don't forget to replace the placeholder "YOUR_API_KEY" with your unique API key in the header. If you haven't obtained one yet, please contact us at [email protected], and we will provide one as soon as possible.
A request example to specify an image as an asset is as follows:
curl --request PATCH \
--url https://api.yepic.ai/v1/talkingphotos/{talkingPhotoId} \
--header 'accept: application/json' \
--header 'X-Api-Key: YOUR_API_KEY' \
--header 'content-type: application/json' \
--data
'
{
"parentId": null,
"groupId": null,
"draft": false,
"videoTitle": "My Studio Express talking photo video title.",
"visibility": "Public"
}
'
For details of the image
asset fields, refer to the table below:
Fields | Data Type | Required | Description |
---|---|---|---|
parentId | string | No | The id of the parent talking photo video. |
groupId | string | No | The id of the group talking photo video. |
draft | boolean | Yes | The draft status of the talking photo video. |
visibility | string | Yes | The visibility of the talking photo video. |
videoTitle | string | Yes | The Title of the talking photo video. |
✅Congratulations! You have successfully update your video using our API!
📌 Need help?

Updated about 2 months ago