action wikipathways_post_create_pathway { label: "post_createPathway" description: "createPathwayCreate a new 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: POST path: "/createPathway" encoding: json input: { type: "object" properties: { auth: { type: "string" } format: { type: "string" enum: ["json", "xml", "html", "dump", "jpg", "pdf"] } gpml: { type: "string" } username: { type: "string" } } required: ["auth", "gpml", "username"] additionalProperties: false } output: { type: "object" additionalProperties: true } }