action credas_get_registration_settings { label: "Gets registration settings or nothing if there are no settings associated with the registration." provider: credas method: GET path: "/api/registrations/{id}/settings" encoding: json input: { type: "object" properties: { apikey: { type: "string" } id: { type: "string" format: "uuid" } } required: ["apikey", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }