v1

latestOpenAPI 3.1.0MIT2026-08-0659118508.8 KB
Pay By Link

List all payment links

List all the payment links.

Required scope: <code style="background:#e8f0fe;color:#1a73e8;padding:2px 8px;border-radius:12px;font-size:0.85em">link:read</code>

get/link

Query parameters

cursorstring

The cursor parameter is used for pagination. It specifies the pointer to the start of the next set of results in a sequence of paginated data. Typically, this is a unique identifier of the last item from the previous response. If not provided, the API fetches the first page of results.

limitnumber

The limit parameter is used for pagination. It specifies the maximum number of entries to return in a single page of results. Max 100.

idstring

UUID from a created Pay By Link.

amountstring

Filter Pay By Links by a certain amount.

customer_namestring

Filter Pay By Links by customer name.

emailstring

Filter Pay By Links by customer email.

phone_numberstring

Filter Pay By Links by customer phone number.

created_atstring

Filter Pay By Links by creation date.

modified_atstring

Filter Pay By Links by modification date.

expiration_timestring

Filter Pay By Links by expiration date.

payment_method[]string

Filter Pay By Links by payment methods.

status[]string

Filter Pay By Links by payment status.

Response

OK

Example response

{
  "metadata": {
    "next_cursor": "lL_j7ilk7rc",
    "count": 10
  },
  "data": [
    {
      "created_at": "2025-06-16T13:32:32Z",
      "modified_at": "2025-06-16T13:32:32Z",
      "expiration_time": "2026-06-10T09:27:55Z",
      "communication_channels": [
        "SMS"
      ],
      "customer": {
        "name": "Jonh Doe",
        "email": "example@easypay.pt",
        "phone": "+351911234567"
      },
      "payment": {
        "methods": [
          "MBW"
        ],
        "single": {
          "requested_amount": "10.45"
        },
        "frequent": {
          "minimum_amount": "5",
          "maximum_amount": "10"
        },
        "subscription": {
          "maximum_captures": 100,
          "start_time": "2025-01-15 00:00"
        }
      },
      "url": "https://easypay.pt/s/XStDvnMKZaN",
      "image": "https://cdn.easypay.pt/images/qr/XStDvnMKZaN"
    }
  ]
}