action credas_get_all { label: "Gets all available RegTypes." provider: credas method: GET path: "/api/reg-types" encoding: json input: { type: "object" properties: { apikey: { type: "string" } } required: ["apikey"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { id: { type: "string" format: "uuid" } name: { type: "string" } } } } }