action gsmtasks_routes_create { label: "routes_create" provider: gsmtasks method: POST path: "/routes/" encoding: form input: { type: "object" required: ["account", "code", "created_at", "id", "updated_at", "url"] properties: { account: { type: "string" format: "uri" } assignee: { type: "string" format: "uri" } code: { type: "string" } created_at: { type: "string" format: "date-time" } description: { type: "string" } end_location: { type: "object" } end_time: { type: "string" format: "date-time" } external_id: { type: "string" } id: { type: "string" format: "uuid" } start_location: { type: "object" } start_time: { type: "string" format: "date-time" } updated_at: { type: "string" format: "date-time" } url: { type: "string" format: "uri" } } } output: { type: "object" additionalProperties: true } }