action velopayments_create_payor_links { label: "Create a Payor Link" description: "This endpoint allows you to create a payor link." provider: velopayments method: POST path: "/v1/payorLinks" encoding: json input: { type: "object" required: ["fromPayorId", "linkType", "toPayorId"] properties: { fromPayorId: { type: "string" format: "uuid" } linkType: { type: "string" enum: ["PARENT_OF"] } toPayorId: { type: "string" format: "uuid" } } } output: { type: "object" additionalProperties: true } }