action combell_create_account { label: "Create a new account" description: "The creation of an account requires some background processing. There is no instant feedback of the creation status." provider: combell method: POST path: "/accounts" encoding: json input: { type: "object" properties: { ftp_password: { type: "string" description: "Ftp password for the account.
\nApplies only if the servicepack contains hosting.
\nPasswords have to adhere to following rules:
" } identifier: { type: "string" description: "An identifier for the account.
\nShould be a domain name for hosting accounts." } servicepack_id: { type: "integer" format: "int32" description: "The servicepack id that defines the account." } } additionalProperties: false } output: { type: "object" additionalProperties: true } }