
Meta CreateImage
CertifiedPublish an Instagram image post
Meta CreateImage
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.
type: io.kestra.plugin.meta.instagram.media.CreateImageExamples
Create an image post
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
accessToken *Requiredstring
Access Token
Access token with required scopes (e.g., instagram_basic, instagram_content_publish).
igId *Requiredstring
Instagram Account ID
ID of the Instagram professional account to act on.
imageUrl *Requiredstring
Image URL
Public HTTPS URL of the image to upload (JPEG only).
apiVersion string
v24.0API Version
Instagram Graph API version to call. Defaults to v24.0.
caption string
Caption
Optional caption text for the post.
host string
https://graph.facebook.comHost URL
Base Graph API URL. Defaults to https://graph.facebook.com.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.