action velopayments_v4_create_payee { label: "Initiate Payee Creation" description: "
Initiate the process of creating 1 to 2000 payees in a batch
\nUse the batchId in the response to query for status.
\nIn addition to standard semantic validations, a 400 will also result if:
\nThe validation at this stage is intra-batch only.
\nValidation against payees who have already been invited occurs subsequently during processing of the batch.
\n" provider: velopayments method: POST path: "/v4/payees" encoding: json input: { type: "object" required: ["payees", "payorId"] properties: { payees: { type: "array" items: { type: "object" required: ["address", "email", "remoteId", "type"] 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" description: "Used to override the default challenge presented to the payee when they onboard
\nNot used after the payee has onboarded
\n" required: ["description", "value"] properties: { description: { type: "string" } value: { type: "string" description: "The value that the user will be asked to verify when they onboard" } } } 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" format: "date" description: "Must not be date in future. Example - 1970-05-20" } name: { required: ["firstName", "lastName"] properties: { firstName: { type: "string" } lastName: { type: "string" } otherNames: { type: "string" } title: { type: "string" } } } nationalIdentification: { type: "string" } } } language: { type: "string" description: "An IETF BCP 47 language code which has been configured for use within this Velo environment.