action instagram_get_users_user_id { label: "Get basic information about a user." description: "Get basic information about a user. To get information about the owner of the access token, you can use\n**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}" encoding: json input: { type: "object" properties: { "user-id": { type: "string" } } required: ["user-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }