---
title: "Create batch payment intents (V1 Legacy)"
method: POST
path: "/v1/payments/batch-pay/intents"
tags: ["Payments"]
---

# Create batch payment intents (V1 Legacy)

`POST /v1/payments/batch-pay/intents`

V1-compatible endpoint to create draft (unscheduled) batch payment intents.

## Request body

- object
  - `company_id` union, required — Numeric id, RiseID address, or team nanoid of the paying company/team.
    - string
    - number
  - `pay_intents` object[], required
    - `payee_riseid` union, required — RiseID, address, or user nanoid of the payee.
      - string
      - number
    - `amount` union, required — Payment amount in micro-USD (1,000,000 = $1.00).
      - string
      - number
    - `salt` union, required — Unique salt for this payment.
      - string
      - number
    - `timestamp` union, required — Unix timestamp the intent is scheduled/approved for.
      - string
      - number
    - `title` string — Optional payment title (max 60 chars).
    - `description` string — Optional payment description (max 1000 chars).
    - `external_id` string — Optional caller-supplied external reference id.

## Response `200`

Default Response

- object
  - `data` object[], required
    - `id` string, required
    - `payHash` string, required
    - `amountUSD` string, required
    - `paySchedule` string, required
    - `approvedPayDate` string, required
    - `saltWeekOrSchedule` string, required
    - `company` union, required
      - string
      - number
    - `payee` union, required
      - string
      - number
    - `status` 'ready', required
    - `created_at` string, required
    - `updated_at` string, required
    - `uid` string, required

## Other responses

- `400` — Bad Request - Invalid parameters
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `409` — Conflict - a payment group or payment with the same salt already exists
- `500` — Internal Server Error

---

[API](https://skmtc.net/riseworks/apis/b2b-api-v1-legacy.md) · [All operations](https://skmtc.net/riseworks/apis/b2b-api-v1-legacy/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/riseworks/b2b-api-v1-legacy/revisions/6f6941749255/schema)
