action credas_update_contact_details { label: "Updates a registration's contact details." provider: credas method: PUT path: "/api/registrations/{id}/contact-details" encoding: json input: { type: "object" properties: { apikey: { type: "string" } deliveryMethod: { type: "integer" format: "int32" description: "None = 0, Email = 1, Sms = 2" enum: [0, 1, 2] } diallingCode: { type: "string" } email: { type: "string" } forename: { type: "string" } id: { type: "string" format: "uuid" } middleName: { type: "string" } phoneNumber: { type: "string" } surname: { type: "string" } } required: ["apikey", "forename", "id", "surname"] additionalProperties: false } output: { type: "object" additionalProperties: true } }