> For the complete documentation index, see [llms.txt](https://docs.welkinhealth.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.welkinhealth.com/developer-and-integration-guide/api-reference/payments.md).

# Payments & Subscriptions

**Base URL:** `https://api.welkinhealth.com/{tenantName}/{instanceName}/patients/{patientId}/payments`

The Payments API provides read access to patient payment records and billing information integrated with Welkin.

***

## Get All Payments for Patient

**GET** `/patients/{patientId}/payments`

Returns a paginated list of payment records for a patient.

### Path Parameters

| Parameter   | Type   | Required | Description       |
| ----------- | ------ | -------- | ----------------- |
| `patientId` | string | Yes      | ID of the patient |

### Query Parameters

| Parameter   | Type              | Required | Description                                               |
| ----------- | ----------------- | -------- | --------------------------------------------------------- |
| `status`    | string            | No       | Filter by status: `PENDING`, `PAID`, `FAILED`, `REFUNDED` |
| `startDate` | string (ISO 8601) | No       | Filter from payment date                                  |
| `endDate`   | string (ISO 8601) | No       | Filter to payment date                                    |
| `page`      | integer           | No       | Page number (default: 0)                                  |
| `size`      | integer           | No       | Page size (default: 20)                                   |

### Example Request

```bash
curl -X GET "https://api.welkinhealth.com/acme/live/patients/pt_7f3a9b2c-1d4e-4f8a-b5c6-d7e8f9a0b1c2/payments?status=PAID" \
  -H "Authorization: Bearer {access_token}"
```

### Example Response

```json
{
  "content": [
    {
      "id": "pay_a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "patientId": "pt_7f3a9b2c-1d4e-4f8a-b5c6-d7e8f9a0b1c2",
      "encounterId": "enc_c3d4e5f6-a7b8-9012-cdef-123456789012",
      "amount": 150.00,
      "currency": "USD",
      "status": "PAID",
      "method": "CREDIT_CARD",
      "paidAt": "2026-03-15T12:00:00Z",
      "invoiceId": "inv_d4e5f6a7-b8c9-0123-defa-234567890123",
      "notes": "Co-pay collected at visit"
    }
  ],
  "totalElements": 1,
  "totalPages": 1,
  "page": 0,
  "size": 20
}
```

***

## Get Payment by ID

**GET** `/patients/{patientId}/payments/{paymentId}`

Returns a single payment record.

### Path Parameters

| Parameter   | Type   | Required | Description       |
| ----------- | ------ | -------- | ----------------- |
| `patientId` | string | Yes      | ID of the patient |
| `paymentId` | string | Yes      | ID of the payment |

### Example Request

```bash
curl -X GET "https://api.welkinhealth.com/acme/live/patients/pt_7f3a9b2c-1d4e-4f8a-b5c6-d7e8f9a0b1c2/payments/pay_a1b2c3d4-e5f6-7890-abcd-ef1234567890" \
  -H "Authorization: Bearer {access_token}"
```

### Example Response

```json
{
  "id": "pay_a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "patientId": "pt_7f3a9b2c-1d4e-4f8a-b5c6-d7e8f9a0b1c2",
  "encounterId": "enc_c3d4e5f6-a7b8-9012-cdef-123456789012",
  "amount": 150.00,
  "currency": "USD",
  "status": "PAID",
  "method": "CREDIT_CARD",
  "paidAt": "2026-03-15T12:00:00Z",
  "invoiceId": "inv_d4e5f6a7-b8c9-0123-defa-234567890123",
  "notes": "Co-pay collected at visit"
}
```

***

## Payment Object

| Field         | Type     | Description                                |
| ------------- | -------- | ------------------------------------------ |
| `id`          | string   | Payment UUID                               |
| `patientId`   | string   | Associated patient                         |
| `encounterId` | string   | Associated encounter (optional)            |
| `amount`      | number   | Payment amount                             |
| `currency`    | string   | Currency code (e.g., `USD`)                |
| `status`      | string   | `PENDING`, `PAID`, `FAILED`, or `REFUNDED` |
| `method`      | string   | Payment method                             |
| `paidAt`      | datetime | Payment timestamp                          |
| `invoiceId`   | string   | Associated invoice (optional)              |

> **Note:** Payment creation and processing are handled through Welkin's billing integration. Contact your Welkin implementation team for billing integration configuration.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.welkinhealth.com/developer-and-integration-guide/api-reference/payments.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
