# Get recurring payment by ID Retrieve detailed information about a specific recurring payment configuration. Endpoint: GET /partner/v2/account/{accountId}/location/{locationId}/recurring-payment/{recurringPaymentId} Version: 2.0 Security: PartnerOAuth ## Path parameters: - `recurringPaymentId` (integer, required) Recurring payment ID - `accountId` (integer, required) Account identifier - `locationId` (integer, required) Location identifier ## Response 200 fields (application/json): - `amountCents` (integer) Amount per payment in cents Example: 10000 - `amountDisplay` (string) Formatted amount Example: "$100.00" - `cardBrand` (string) Card brand Example: "visa" - `cardLast4` (string) Last 4 digits of card on file Example: "4242" - `completedPayments` (integer) Number of payments completed Example: 3 - `createdAt` (string) Creation timestamp Example: "2025-01-01T10:00:00Z" - `description` (string) Description/memo Example: "Monthly payment plan" - `endDate` (string) When the recurring payment ends (if limited) Example: "2025-12-31T23:59:59Z" - `frequency` (string) Payment frequency Enum: "WEEKLY", "BIWEEKLY", "MONTHLY", "QUARTERLY", "ANNUALLY" - `id` (integer) Unique recurring payment identifier Example: 12345 - `nextPaymentDate` (string) Date of next payment Example: "2025-02-01" - `patientId` (integer) Patient ID Example: 67890 - `patientName` (string) Patient name Example: "John Doe" - `remainingPayments` (integer) Number of payments remaining Example: 9 - `startDate` (string) When the recurring payment started Example: "2025-01-01T00:00:00Z" - `status` (string) Status Enum: "ACTIVE", "PAUSED", "CANCELLED", "COMPLETED", "FAILED" - `totalPayments` (integer) Total number of payments (null = unlimited) Example: 12 - `updatedAt` (string) Last update timestamp Example: "2025-01-10T14:30:00Z" ## Response 401 fields ## Response 403 fields ## Response 404 fields