action credas_update_registration_settings {
label: "Updates registration settings."
provider: credas
method: PUT
path: "/api/registrations/{id}/settings"
encoding: json
input: {
type: "object"
properties: {
apikey: {
type: "string"
}
capturePersonalDetails: {
type: "boolean"
}
id: {
type: "string"
format: "uuid"
}
nameMatchRoutine: {
type: "integer"
format: "int32"
description: "Fuzzy = 1, Strict = 2"
enum: [1, 2]
}
requiredChecks: {
type: "array"
description: "The value of required checks determines what checks are performed.
Unknown = 0,Id Documents = 1, Standard Checks = 2, International Sanctions and Pep = 3, Credit Status Check = 4, Bank Account Check = 5, Proof of Ownership = 6, Right to Work = 7, Right to Rent = 8
"
items: {
type: "integer"
format: "int32"
enum: [0, 1, 2, 3, 4, 5, 6, 7, 8]
}
}
skipEmailStep: {
type: "boolean"
}
}
required: ["apikey", "id"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}