action notion_retrieve_auser { label: "Retrieve a user" description: "Retrieve a user object using the ID specified in the request path." provider: notion method: GET path: "/v1/users/{id}" encoding: form input: { type: "object" properties: { "Notion-Version": { type: "string" } } additionalProperties: false } output: { type: "object" properties: { avatar_url: { type: "object" } id: { type: "string" } name: { type: "string" } object: { type: "string" } person: { type: "object" properties: { email: { type: "string" } } } type: { type: "string" } } } }