action wikipathways_get_update_pathway { label: "get_updatePathway" description: "updatePathwayUpdate a pathway on the wiki with the given GPML code.
Note: To create/modify pathways via the web service, you need to have an account with web service write permissions. Please contact us to request write access for the web service." provider: wikipathways method: GET path: "/updatePathway" encoding: json input: { type: "object" properties: { auth: { type: "string" } description: { type: "string" } format: { type: "string" enum: ["json", "xml", "html", "dump", "jpg", "pdf"] } gpml: { type: "string" } pwId: { type: "string" } revision: { type: "integer" } username: { type: "string" } } required: ["auth", "description", "gpml", "pwId", "revision", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }