action clicksend_create_a_new_account { label: "Create a new account" description: "**Note:** *Authentication isn't required to create a new account.*" provider: clicksend method: POST path: "/account" encoding: json input: { type: "object" required: ["account_name", "country", "password", "user_email", "user_first_name", "user_last_name", "user_phone", "username"] properties: { account_name: { type: "string" description: "Your delivery to value." } country: { type: "string" description: "Your country." } password: { type: "string" description: "Your password." } user_email: { type: "string" description: "Your email." } user_first_name: { type: "string" description: "Your first name." } user_last_name: { type: "string" description: "Your last name." } user_phone: { type: "string" description: "Your phone number in E.164 format." } username: { type: "string" description: "Your username." } } } output: { type: "object" additionalProperties: true } }