action instagram_get_users_user_id_media_recent { label: "Get the most recent media published by a user." description: "Get the most recent media published by a user. To get the most recent media published by the owner of the\naccess token, you can use **self** instead of the `user-id`.\n\nSecurity scope `public_content` is required to read information about other users.\n" provider: instagram method: GET path: "/users/{user-id}/media/recent" encoding: json input: { type: "object" properties: { count: { type: "string" } max_id: { type: "string" } max_timestamp: { type: "string" } min_id: { type: "string" } min_timestamp: { type: "string" } "user-id": { type: "string" } } required: ["user-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }