action instagram_post_media_media_id_comments { label: "Create a comment on a media object." description: "Create a comment on a media object with the following rules:\n\n * The total length of the comment cannot exceed 300 characters.\n * The comment cannot contain more than 4 hashtags.\n * The comment cannot contain more than 1 URL.\n * The comment cannot consist of all capital letters.\n" provider: instagram method: POST path: "/media/{media-id}/comments" encoding: json input: { type: "object" properties: { "media-id": { type: "string" } text: { type: "string" } } required: ["media-id", "text"] additionalProperties: false } output: { type: "object" additionalProperties: true } }