action isendpro_subaccount_add { label: "Ajoute un sous compte" description: "Ajoute un sous compte" provider: isendpro method: POST path: "/subaccount" encoding: json input: { type: "object" required: ["keyid", "subAccountEdit", "subAccountLogin", "subAccountPassword"] properties: { keyid: { type: "string" } subAccountEdit: { type: "string" enum: ["addAccount"] } subAccountLogin: { type: "string" } subAccountPassword: { type: "string" } } } output: { type: "object" properties: { etat: { type: "object" properties: { etat: { type: "array" items: { type: "object" properties: { code: { type: "number" } message: { type: "string" } subAccountId: { type: "string" } subAccountKeyId: { type: "string" } subAccountLogin: { type: "string" } } } } } } } } }