---
title: "Make a Payment to Platform"
method: POST
path: "/v1/payments/paymentToPlatform"
tags: ["Payment to Platform"]
---

# Make a Payment to Platform

`POST /v1/payments/paymentToPlatform`

This API will allow you to make a payment to platform.

## Request body

- PaymentToPlatform
  - `payerId` string, required — PayerId of payer from whom the payment would go through
  - `amount` number, required — Amount to be transferred
  - `extRequestId` string, required — ID to identify the request
  - `tag` string — Tag to label different types of payments
  - `scheduleTs` number — Schedule timestamp for processing payment
  - `requestType` 'ONE_TIME' | 'RECURRING', required — Whether the payment request is one-time or recurring.
  - `settlementSpeed` 'STANDARD' | 'NEXT_DAY' | 'SAME_DAY' — Settlement speed. If this field is not set, the default configuration will be used.
  - `paymentMethod` 'ACH' | 'WIRE' — Payment method. If this field is not set, ACH will be used.

## Response `200`

Successful response

- PaymentToPlatformOkResponse
  - `status` ResponseStatus, required
    - `code` number
    - `desc` string
    - `messages` Message[]
      - `desc` string, required
      - `type` 'ERROR' | 'WARN' | 'INFO'
  - `data` PaymentToPlatformResponse, required
    - `requestId` string, required
    - `extRequestId` string, required
    - `amount` number, required — Transaction amount
    - `payerId` string, required — PayerId of payer from whom the payment would go through.
    - `requestType` 'ONE_TIME' | 'RECURRING', required — Whether the payment request is one-time or recurring.
    - `settlementSpeed` 'STANDARD' | 'NEXT_DAY' | 'SAME_DAY', required — Settlement speed. If this field is not set, the default configuration will be used.
    - `paymentMethod` 'ACH' | 'WIRE', required — Payment method. If this field is not set, ACH will be used.
    - `scheduleTs` number, required — Schedule timestamp for processing payment
    - `tag` string, required
    - `createdOn` number, required
    - `updatedOn` number, required

## Other responses

- `400` — Bad request response
- `401` — Unauthorized response
- `404` — Not found response
- `500` — Internal server error response

---

[API](https://skmtc.dev/spinwheel/apis/discover.md) · [All operations](https://skmtc.dev/spinwheel/apis/discover/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/spinwheel/discover/revisions/55b90a2e1dd4/schema)
