action credas_update_registration_status { label: "Updates the status of the registration to one specified in the request." provider: credas method: PUT path: "/api/registrations/{id}/status" encoding: json input: { type: "object" properties: { apikey: { type: "string" } id: { type: "string" format: "uuid" } status: { type: "integer" format: "int32" description: "Unknown = 0, Submitted = 1, Approved = 2, Rejected = 3, Exported = 4, Invited = 6" enum: [0, 1, 2, 3, 4, 6] } } required: ["apikey", "id", "status"] additionalProperties: false } output: { type: "object" additionalProperties: true } }