action instagram_get_locations_location_id_media_recent { label: "Get a list of recent media objects from a given location." description: "Get a list of recent media objects from a given location." provider: instagram method: GET path: "/locations/{location-id}/media/recent" encoding: json input: { type: "object" properties: { "location-id": { type: "string" } max_id: { type: "string" } max_timestamp: { type: "string" } min_id: { type: "string" } min_timestamp: { type: "string" } } required: ["location-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }