action docusign_cloud_storage_get_cloud_storage_providers { label: "Get the Cloud Storage Provider configuration for the specified user." description: "Retrieves the list of cloud storage providers enabled for the account and the configuration information for the user.\n" provider: docusign method: GET path: "/v2.1/accounts/{accountId}/users/{userId}/cloud_storage" encoding: json input: { type: "object" properties: { accountId: { type: "string" } redirectUrl: { type: "string" } userId: { type: "string" } } required: ["accountId", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }