action instagram_delete_media_media_id_comments_comment_id { label: "Remove a comment." description: "Remove a comment either on the authenticated user's media object or authored by the authenticated user.\n" provider: instagram method: DELETE path: "/media/{media-id}/comments/{comment-id}" encoding: json input: { type: "object" properties: { "comment-id": { type: "string" } "media-id": { type: "string" } } required: ["comment-id", "media-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }