Skip to main content
POST
/
displaymode
/
image-genre-release
/
video
/
inbound
For an AI-generated video, the completed webhook callback is received here and save to database and cache.
curl --request POST \
  --url https://api.example.com/displaymode/image-genre-release/video/inbound \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "evt_abc123",
  "object": "event",
  "created_at": 1758941485,
  "type": "video.completed",
  "data": {
    "id": "video_abc123"
  }
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

The body is of type any.

Response

Success

success
boolean
data
unknown