Zoom
POST
/api/v1/nova/buttonThe API simulates a Zoom button click on the Midjourney channel. A completed image will return an array of buttons which you can subsequently invoke on the image. These buttons are dynamic and a list of buttons you can press are included in every image completion.
Request
The unique identifier you get from your previous image generation request.
The valid button action for Midjourney. The button value needs be within the "buttons" array in /message endpoint's response. E.g. Zoom Out 2x, Zoom Out 1.5x.
The reference metadata which will return as part of the webhook.
The webhook URL which the response will send to, the payload of this webhook is same as our Message endpoint.
{
"messageId": "string",
"button": "Zoom Out 1.5x",
"ref": "string",
"webhookOverride": "string"
}
Request samples
Responses
The status of the request.
The messageId of the request, which will be used for querying the progress, sending subsequential actions later, etc.
The timestamp of the job creation.
The error message, if any
{
"success": true,
"messageId": "d15c1541-229a-442b-9873-d3494dede12a",
"createdAt": "2023-08-01T14:03:01.817Z"
}