Fetch the complete documentation index at: https://zafepay.readme.io/llms.txt. Use this file to discover all available pages before exploring further. Append .md to any documentation page URL to get its markdown version.

# List installments

# OpenAPI definition

```json
{
  "openapi": "3.1.0",
  "info": {
    "title": "Onlypays",
    "version": "1"
  },
  "servers": [
    {
      "url": "https://api.staging.zafepay.com/api"
    }
  ],
  "components": {
    "securitySchemes": {
      "sec0": {
        "type": "apiKey",
        "in": "header",
        "name": "Authorization",
        "x-bearer-format": "bearer"
      }
    }
  },
  "security": [
    {
      "sec0": []
    }
  ],
  "paths": {
    "/v1/integration/installments": {
      "get": {
        "summary": "List installments",
        "description": "",
        "operationId": "list-installments",
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "description": "Header to access api endpoints (Check the authentication section).",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page",
            "in": "query",
            "description": "Page number to retrieve from a paginated collection",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 1
            }
          }
        ],
        "responses": {
          "200": {
            "description": "200",
            "content": {
              "application/json": {
                "examples": {
                  "Result": {
                    "value": "{\n    \"data\": [\n        {\n            \"id\": \"935db049-8e5d-49e7-9323-6a076ba758e5\",\n            \"amount\": 120000,\n            \"created_at\": \"2023-10-11T21:34:00\",\n            \"currency\": \"CLP\",\n            \"due_date\": \"2023-09-01\",\n          \t\"external_id\": null,\n            \"name\": null,\n            \"payment_date\": null,\n            \"status\": \"pending\",\n            \"updated_at\": \"2023-10-11T21:34:00\"\n        },\n        {\n            \"id\": \"0b17257f-7cc9-424b-b451-07d7b1bd37aa\",\n            \"amount\": 130000,\n            \"created_at\": \"2023-10-11T21:34:01\",\n            \"currency\": \"CLP\",\n            \"due_date\": \"2023-10-01\",\n          \t\"external_id\": null,\n            \"name\": null,\n            \"payment_date\": null,\n            \"status\": \"pending\",\n            \"updated_at\": \"2023-10-11T21:34:01\"\n        },\n        {\n            \"id\": \"d39bb0d6-f509-4212-9a00-420b2d1a8944\",\n            \"amount\": 140000,\n            \"created_at\": \"2023-10-11T21:34:01\",\n            \"currency\": \"CLP\",\n            \"due_date\": \"2023-11-01\",\n          \t\"external_id\": null,\n            \"name\": null,\n            \"payment_date\": null,\n            \"status\": \"pending\",\n            \"updated_at\": \"2023-10-11T21:34:01\"\n        },\n        {\n            \"id\": \"ed6cf9a7-06a2-460b-87f5-de5fc81edbf6\",\n            \"amount\": 150000,\n            \"created_at\": \"2023-10-11T21:34:01\",\n            \"currency\": \"CLP\",\n            \"due_date\": \"2023-12-01\",\n          \t\"external_id\": null,\n            \"name\": null,\n            \"payment_date\": null,\n            \"status\": \"pending\",\n            \"updated_at\": \"2023-10-11T21:34:01\"\n        },\n        {\n            \"id\": \"fe8ba1b0-b320-4a06-8d9d-3f83289c195c\",\n            \"amount\": 3.2,\n            \"created_at\": \"2023-10-11T21:34:01\",\n            \"currency\": \"UF\",\n            \"due_date\": \"2024-01-01\",\n          \t\"external_id\": null,\n            \"name\": null,\n            \"payment_date\": null,\n            \"status\": \"pending\",\n            \"updated_at\": \"2023-10-11T21:34:01\"\n        }\n    ]\n}"
                  }
                },
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "example": "935db049-8e5d-49e7-9323-6a076ba758e5"
                          },
                          "amount": {
                            "type": "integer",
                            "example": 120000,
                            "default": 0
                          },
                          "created_at": {
                            "type": "string",
                            "example": "2023-10-11T21:34:00"
                          },
                          "currency": {
                            "type": "string",
                            "example": "CLP"
                          },
                          "due_date": {
                            "type": "string",
                            "example": "2023-09-01"
                          },
                          "external_id": {},
                          "name": {},
                          "payment_date": {},
                          "status": {
                            "type": "string",
                            "example": "pending"
                          },
                          "updated_at": {
                            "type": "string",
                            "example": "2023-10-11T21:34:00"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    }
  },
  "x-readme": {
    "headers": [],
    "explorer-enabled": true,
    "proxy-enabled": true
  },
  "x-readme-fauxas": true,
  "_id": "64c97d0ad3b2f2002d150a5d:6a887a45844bdd2451480bc3"
}
```