action clearblade_get_external_db { label: "DATABASES - Retrieve a specific external database connection" description: "Returns the name and database type of a external database connection. This is a developer and user endpoint." provider: clearblade method: GET path: "/api/v/4/external-db/{systemKey}/{name}" encoding: json input: { type: "object" properties: { "ClearBlade-UserToken": { type: "string" } name: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-UserToken", "name", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }