action rumble_get_account_credential { label: "Get credential details" provider: rumble method: GET path: "/account/credentials/{credential_id}" encoding: json input: { type: "object" properties: { credential_id: { type: "string" format: "uuid" } } required: ["credential_id"] additionalProperties: false } output: { type: "object" required: ["id"] properties: { acl: { type: "object" } cidrs: { type: "array" items: { type: "string" } } client_id: { type: "string" format: "uuid" } created_at: { type: "integer" format: "int64" } created_by_email: { type: "string" format: "email" } created_by_id: { type: "string" format: "uuid" } global: { type: "boolean" } id: { type: "string" format: "uuid" } last_used_at: { type: "integer" format: "int64" } last_used_by_id: { type: "string" format: "uuid" } name: { type: "string" } type: { type: "string" description: "The service the credentials are for." enum: ["miradore_api_key_v1", "aws_access_secret", "crowdstrike_api_key", "azure_client_secret", "azure_username_password", "censys_search_api_key", "snmpv2_community", "snmpv3_credential", "vmware_username_password"] } } } }