action patientview_log_in { label: "Log In" description: "Authenticate using username and password, returns token, which must be added to X-Auth-Token in header of all future requests" provider: patientview method: POST path: "/auth/login" encoding: json input: { type: "object" properties: { apiKey: { type: "string" } password: { type: "string" } username: { type: "string" } } } output: { type: "object" additionalProperties: true } }