Meta CreateImage

Meta CreateImage

Certified

Publish an Instagram image post

Uploads an image URL to the Instagram Graph API and publishes it with an optional caption. Requires a professional account token with content publish rights.

yaml
type: io.kestra.plugin.meta.instagram.media.CreateImage

Create an image post

yaml
id: instagram_create_image_post
namespace: company.team

tasks:
  - id: create_image_post
    type: io.kestra.plugin.meta.instagram.media.CreateImage
    igId: "{{ secret('INSTAGRAM_ACCOUNT_ID') }}"
    accessToken: "{{ secret('INSTAGRAM_ACCESS_TOKEN') }}"
    imageUrl: "https://example.com/image.jpg"
    caption: "Hello from Kestra! This is an automated post."
Properties

Access Token

Access token with required scopes (e.g., instagram_basic, instagram_content_publish).

Instagram Account ID

ID of the Instagram professional account to act on.

Image URL

Public HTTPS URL of the image to upload (JPEG only).

Defaultv24.0

API Version

Instagram Graph API version to call. Defaults to v24.0.

Caption

Optional caption text for the post.

Defaulthttps://graph.facebook.com

Host URL

Base Graph API URL. Defaults to https://graph.facebook.com.

Reference (ref) of the pluginDefaults to apply to this task.