action gsmtasks_register_create { label: "register_create" provider: gsmtasks method: POST path: "/register/" encoding: form input: { type: "object" properties: { account: { type: "object" required: ["id", "name", "url"] properties: { country_code: { type: "object" } id: { type: "string" format: "uuid" } language: { type: "object" } name: { type: "string" } timezone: { type: "object" } type: { type: "object" } url: { type: "string" format: "uri" } website: { type: "string" } } } format: { type: "string" enum: ["json", "xlsx"] } token: { type: "string" } user: { type: "object" required: ["email", "id", "name", "password", "url"] properties: { email: { type: "string" format: "email" } id: { type: "string" format: "uuid" } name: { type: "string" } password: { type: "string" } phone: { type: "string" } url: { type: "string" format: "uri" } } } } required: ["account", "token", "user"] additionalProperties: false } output: { type: "object" additionalProperties: true } }