action wikipathways_get_login { label: "get_login" description: "loginStart a logged in session, using an existing WikiPathways account. This function will return an authentication code that can be used to excecute methods that need authentication (e.g. updatePathway)." provider: wikipathways method: GET path: "/login" encoding: json input: { type: "object" properties: { format: { type: "string" enum: ["json", "xml", "html", "dump", "jpg", "pdf"] } name: { type: "string" } pass: { type: "string" } } required: ["name", "pass"] additionalProperties: false } output: { type: "object" additionalProperties: true } }