action instagram_delete_media_media_id_likes { label: "Remove a like on this media by the current user." description: "Remove a like on this media by the currently authenticated user." provider: instagram method: DELETE path: "/media/{media-id}/likes" encoding: json input: { type: "object" properties: { "media-id": { type: "string" } } required: ["media-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }