action instagram_get_media_media_id_likes { label: "Get a list of users who have liked this media." description: "Get a list of users who have liked this media." provider: instagram method: GET 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 } }