Skip to content
SynupAPI
Get an API key
EVENTidea_image.generation_job_failed

AI idea image generation failed

Event name: idea_image.generation_job_failed

An AI image for an idea failed generating. Scope: local or social (see the top-level scope field). Delivered as a signed HTTP POST to your Webhooks URL.

Every delivery is signed. Verify X-Synup-Signature before processing — see Synup Webhooks.

Payload

NameTypeRequiredDescription
eventstringoptionalDotted event name.
timestampstringoptionalISO-8601 UTC time the event was emitted.
account_idintegeroptionalSynup account the event belongs to.
location_idstringoptionalNumeric string for location-scoped events; null for brand-scoped events.
scopestringoptionalAI post-idea events only: "local" or "social".
dataobjectoptional
data.idea_idstringoptionalIdea the image belongs to.
data.errorstringoptionalCustomer-safe reason, bounded to <=200 chars (failed only).
data.flux_job_idstringoptionalImage-job id (null for the synchronous batch path).
data.social_profile_idstringoptionalBrand id (scope:"social" only).
Example delivery
{
  "event": "idea_image.generation_job_failed",
  "timestamp": "2026-07-15T07:12:00Z",
  "account_id": 19598,
  "location_id": null,
  "scope": "social",
  "data": {
    "idea_id": "idea-90211",
    "error": "Image generation failed",
    "flux_job_id": "flux-3321",
    "social_profile_id": "c81d4e2e-.."
  }
}