PaymentMethod
List the organization's configured payment methods
GET /api/v1/payment-methods
Requires authentication (Bearer token) and the X-Organization-Id header.
Capability metadata only (never credentials): use supports_payment_links to decide whether to offer online-payment actions such as sharing an invoice payment link. Unpaginated — organizations have a handful of methods. Filters: provider, direction, is_active, currency. (#843)
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
provider |
query | string | no | |
direction |
query | string | no | |
is_active |
query | boolean | no | |
currency |
query | string | no |
Responses
| Status | Description |
|---|---|
| 200 | For non-paginated data, return as before |
| 422 |
Example request
curl -X GET "https://app.encryptinvoice.com/api/v1/payment-methods" \
-H "Authorization: Bearer {{access_token}}" \
-H "X-Organization-Id: {{organization_id}}" \
-H "Accept: application/json"