BrandKarma

get_content_generation_status

Returns the current status of a content-generation job: phase, progress (0–1), last heartbeat timestamp, started timestamp, and error message if the job failed. Use this to poll a generate_content_from_item / generate_content_from_idea run without re-reading the full article body. Either jobId or contentItemId is required: with jobId, returns that specific job; with contentItemId, returns the most recent ContentGenerationJob for that item (active job if one exists, otherwise the most recent completed/failed one). Phase progression: Research → TextGeneration → EditorialReview → ImageDescription → ImageGeneration → Finalizing → (Success).

Remote Account required revuo:brandkarma-4084

Remote (network-hosted) · Requires an account with the vendor · OAuth

Other tools also called get_content_generation_status? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "jobId": {
      "description": "Job ID returned by generate_content_from_item / generate_content_from_idea. Either jobId or contentItemId must be set.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "contentItemId": {
      "description": "Content item ID (ObjectId) — alternative to jobId. Returns the latest ContentGenerationJob for the item (active first, else most recent).",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  }
}