action dracoon_request_customer_info { label: "Request customer information for user" description: "### Description: \nUse this API to get: \n* customer name\n* used / free space\n* used / available\n* user account info\n\nof the according customer.\n\n### Precondition:\nAuthenticated user.\n\n### Postcondition:\nCustomer information is returned.\n\n### Further Information:\nNone." provider: dracoon method: GET path: "/v4/user/account/customer" encoding: json input: { type: "object" properties: { "X-Sds-Auth-Token": { type: "string" } } additionalProperties: false } output: { type: "object" description: "Customer information" required: ["accountsLimit", "accountsUsed", "cntGuestUser", "cntInternalUser", "customerEncryptionEnabled", "id", "isProviderCustomer", "name", "spaceLimit", "spaceUsed"] properties: { accountsLimit: { type: "integer" format: "int32" description: "User accounts limit" } accountsUsed: { type: "integer" format: "int32" description: "User accounts used" } cntGuestUser: { type: "integer" format: "int32" description: "Number of guest user accounts" } cntInternalUser: { type: "integer" format: "int32" description: "Number of internal user accounts" } customerEncryptionEnabled: { type: "boolean" description: "Clientside encryption for customer enabled" } id: { type: "integer" format: "int64" description: "Unique identifier for the customer" } isProviderCustomer: { type: "boolean" description: "Customer is Provider Customer" } name: { type: "string" description: "Customer name" } spaceLimit: { type: "integer" format: "int64" description: "Space limit (in bytes). -1 for unlimited" } spaceUsed: { type: "integer" format: "int64" description: "Space used (in bytes)" } } } }