action box_get_authorize { label: "Authorize user" description: "Authorize a user by sending them through the [Box](https://box.com)\nwebsite and request their permission to act on their behalf.\n\nThis is the first step when authenticating a user using\nOAuth 2.0. To request a user's authorization to use the Box APIs\non their behalf you will need to send a user to the URL with this\nformat." provider: box method: GET path: "/authorize" encoding: json input: { type: "object" properties: { client_id: { type: "string" } redirect_uri: { type: "string" format: "url" } response_type: { type: "string" format: "token" enum: ["code"] } scope: { type: "string" } state: { type: "string" } } required: ["client_id", "response_type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }