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