Create a recurring Pix Request Schedule

​

Creates a recurrence and materializes the linked single schedules. If recurrenceEndDate is provided, every installment up to that date is created at once. Otherwise, the recurrence is open-ended and the worker materializes the next installment after each execution.

Headers
  • Idempotency-Key
    Type: string
    required
Body·
required
application/json

Request payload for creating a recurring Pix schedule. Materializes one or more single schedules linked to this recurrence.

  • amount
    Type: number
    required

    Transaction amount.

  • initiationMethod
    Type: string enum
    required

    Payment initiation method.

    values
    • APDN
    • APES
    • AUTO
    • DICT
    • INIC
    • MANU
    • QRDN
    • QRES
  • receiver
    Type: object ·
    required

    Receiver/beneficiary information for the Pix transaction

  • recurrence
    Type: string enum
    required

    Recurrence frequency. Options: WEEKLY, BIWEEKLY, MONTHLY.

    values
    • WEEKLY
    • BIWEEKLY
    • MONTHLY
  • sender
    Type: object ·
    required

    Payer/sender information for the Pix transaction

  • startDate
    Type: string Format: date
    required

    Start date of the recurrence in ISO format (yyyy-MM-dd). The first installment is materialized on this date. Must be after the current day.

  • description
    Type: string

    Payment description or message to the receiver.

  • metadata
    Type: array object[] ·

    Optional list of custom key/value pairs.

    Key/value metadata item

  • priority
    Type: string enum

    Payment priority for the outgoing Pix request (SPI band: HIGH → HIGH, NORM → NORM)

    values
    • HIGH
    • NORM
  • purpose
    Type: string enum

    Purpose of the outgoing Pix payment (SPI purpose codes)

    values
    • GSCB
    • IPAY
    • IPRT
    • OTHR
    • REFU
  • reconciliationId
    Type: string

    Client reconciliation identifier for reporting and matching. Alphanumeric only ([a-zA-Z0-9]); the length depends on initiationMethod: up to 25 for QRES, APES and INIC, and 26 to 35 for QRDN, APDN and AUTO.

  • recurrenceEndDate
    Type: string Format: date

    End date for recurrence in ISO format (yyyy-MM-dd). When provided, every installment up to this date is materialized at creation time. When omitted, the recurrence is open-ended and the worker materializes the next installment after each execution.

Responses
  • */*
  • 400

    Invalid request

    Erros desta resposta

    Código interno HTTP Descrição Erro normativo Bacen
    PIX-SCH-0005 400 Invalid schedule start date —
    PIX-SCH-0020 400 recurrenceEndDate must be on or after startDate —
Request Example for post/api/v1/pix-schedules/recurrences
curl http://localhost/api/v1/pix-schedules/recurrences \
  --request POST \
  --header 'Idempotency-Key: ' \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --data '{
  "initiationMethod": "DICT",
  "amount": 123.98,
  "sender": {
    "name": "Joao da Silva",
    "document": {
      "type": "CPF",
      "value": "12345678901"
    },
    "account": {
      "ispb": "12345678",
      "type": "CACC",
      "branch": "0001",
      "number": "12345678"
    }
  },
  "receiver": {
    "key": "+5511989450870",
    "name": "Joao da Silva",
    "document": {
      "type": "CPF",
      "value": "12345678901"
    },
    "account": {
      "ispb": "12345678",
      "type": "CACC",
      "branch": "0001",
      "number": "12345678"
    }
  },
  "description": "",
  "reconciliationId": "REC20260408001",
  "priority": "HIGH",
  "metadata": [
    {
      "key": "orderId",
      "value": "ORD-1001"
    }
  ],
  "purpose": "IPAY",
  "source": "MANUAL",
  "recurrence": "MONTHLY",
  "startDate": "2026-04-30",
  "recurrenceEndDate": "2027-04-30"
}'
{
  "id": "c0a8012e-1234-5678-90ab-000000000001",
  "status": "ACTIVE",
  "createdAt": "2026-03-01T09:30:00",
  "updatedAt": "2026-03-15T12:00:00",
  "initiationMethod": "MANU",
  "priority": "NORM",
  "priorityType": "PAGAGD",
  "purpose": "IPAY",
  "amount": 150,
  "userDescription": "Gym membership",
  "sender": {
    "name": "Joao da Silva",
    "document": {
      "type": "CPF",
      "value": "12345678901"
    },
    "account": {
      "ispb": "12345678",
      "type": "CACC",
      "branch": "0001",
      "number": "12345678"
    }
  },
  "receiver": {
    "key": "+5511989450870",
    "name": "Joao da Silva",
    "document": {
      "type": "CPF",
      "value": "12345678901"
    },
    "account": {
      "ispb": "12345678",
      "type": "CACC",
      "branch": "0001",
      "number": "12345678"
    }
  },
  "source": "MANUAL",
  "recurrence": "MONTHLY",
  "startDate": "2026-04-30",
  "recurrenceEndDate": "2027-04-30",
  "nextExecutionDate": "2026-05-30",
  "lastExecutionDate": "2026-04-30",
  "totalInstallments": 12
}