action velopayments_payee_details_update_v3 { label: "Update Payee Details" description: "
Use v4 instead
\nUpdate payee details for the given Payee Id.
\n"
provider: velopayments
method: POST
path: "/v3/payees/{payeeId}/payeeDetailsUpdate"
encoding: json
input: {
type: "object"
properties: {
address: {
type: "object"
required: ["city", "country", "line1"]
properties: {
city: {
type: "string"
}
country: {
type: "string"
description: "Valid ISO 3166 2 character country code. See the ISO specification for details."
}
countyOrProvince: {
type: "string"
}
line1: {
type: "string"
}
line2: {
type: "string"
}
line3: {
type: "string"
}
line4: {
type: "string"
}
zipOrPostcode: {
type: "string"
}
}
}
challenge: {
type: "object"
required: ["description", "value"]
properties: {
description: {
type: "string"
}
value: {
type: "string"
}
}
}
company: {
type: "object"
required: ["name"]
properties: {
name: {
type: "string"
}
operatingName: {
type: "string"
}
taxId: {
type: "string"
description: "Company Tax Id must be between 6 and 30 characters long"
}
}
}
email: {
type: "string"
format: "email"
}
individual: {
type: "object"
required: ["dateOfBirth", "name"]
properties: {
dateOfBirth: {
type: "string"
description: "If not authorized to view, value will be masked. Example: - XXXX-XX-XX"
}
name: {
required: ["firstName", "lastName"]
properties: {
firstName: {
type: "string"
}
lastName: {
type: "string"
}
otherNames: {
type: "string"
}
title: {
type: "string"
}
}
}
nationalIdentification: {
type: "string"
description: "If not authorized to view, value will be masked. Example: XXXXX1234"
}
}
}
language: {
type: "string"
description: "An IETF BCP 47 language code which has been configured for use within this Velo environment.
\nSee the /v1/supportedLanguages endpoint to list the available codes for an environment.\n"
}
payeeId: {
type: "string"
format: "uuid"
}
payeeType: {
type: "string"
description: "The type of the payee"
enum: ["Individual", "Company"]
}
}
required: ["payeeId"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}