action velopayments_payor_get_branding { label: "Get Branding" description: "Get the payor branding details." provider: velopayments method: GET path: "/v1/payors/{payorId}/branding" encoding: json input: { type: "object" properties: { payorId: { type: "string" format: "uuid" } } required: ["payorId"] additionalProperties: false } output: { type: "object" required: ["logoUrl", "payorName"] properties: { collectiveAlias: { type: "string" description: "How the payor has chosen to refer to payees" } dbaName: { type: "string" description: "The payor’s 'Doing Business As' name" } logoUrl: { type: "string" format: "uri" description: "

The URL to use for this payor’s logo

\n

This will be an immutable system-generated URL

\n" } payorName: { type: "string" description: "The name of the payor" } supportContact: { type: "string" description: "The payor’s support contact address" } } } }