action velopayments_get_payees_invitation_status_v3 { label: "Get Payee Invitation Status" description: "

Use v4 instead

\n

Returns a filtered, paginated list of payees associated with a payor, along with invitation status and grace period end date.

\n" provider: velopayments method: GET path: "/v3/payees/payors/{payorId}/invitationStatus" encoding: json input: { type: "object" properties: { invitationStatus: { type: "string" } page: { type: "integer" format: "int32" } pageSize: { type: "integer" format: "int32" } payeeId: { type: "string" format: "uuid" } payorId: { type: "string" format: "uuid" } } required: ["payorId"] additionalProperties: false } output: { type: "object" description: "List Payees Invitation Status Object" properties: { content: { type: "array" items: { type: "object" required: ["invitationStatus", "payeeId"] properties: { gracePeriodEndDate: { type: "string" format: "date" } invitationStatus: { type: "string" description: "Payee invitation status. One of the following values: ACCEPTED, PENDING, DECLINED" } payeeId: { type: "string" format: "uuid" } } } } links: { type: "array" items: { properties: { href: { type: "string" } rel: { type: "string" } } } } page: { properties: { numberOfElements: { type: "integer" } page: { type: "integer" } pageSize: { type: "integer" } totalElements: { type: "integer" } totalPages: { type: "integer" } } } } } }