action spoonacular_connect_user { label: "Connect User" description: "In order to call user-specific endpoints, you need to connect your app's users to spoonacular users." provider: spoonacular method: POST path: "/users/connect" encoding: json input: { type: "object" required: ["email", "firstName", "lastName", "username"] properties: { email: { type: "string" } firstName: { type: "string" } lastName: { type: "string" } username: { type: "string" } } } output: { type: "object" required: ["hash", "username"] properties: { hash: { type: "string" } username: { type: "string" } } } }