---
title: "Create a delayed route"
method: POST
path: "/payments/{paymentId}/routes"
tags: ["Delayed Routing API"]
---

# Create a delayed route

`POST /payments/{paymentId}/routes`

Create a route for a specific payment. The routed amount is credited to the account of your customer.

> 🔑 Access with
>
> [API key](/reference/authentication)
>
> [Advanced access token with **payments.write**](/reference/authentication)
>
> [OAuth access with **payments.write**](/reference/authentication)

## Request body

- object — Payload to create a new delayed route for a payment.
  - `amount` object, required — The amount to be routed.
    - `currency` string, required — A three-character ISO 4217 currency code.
    - `value` string, required — A string containing an exact monetary amount in the given currency.
  - `destination` object, required — The destination of the route.
    - `type` string, required — The type of destination. Currently only the destination type `organization` is supported. Possible values: `organization`
    - `organizationId` string, required — Required for destination type `organization`. The ID of the connected organization the funds should be routed to.
  - `description` string — Description shown in reports.

## Response `201`

The route object.

## Other responses

- `404` — No entity with this ID exists.
- `429` — Rate Limit has been reached.

---

[API](https://skmtc.net/mollie/apis/accepting-payments.md) · [All operations](https://skmtc.net/mollie/apis/accepting-payments/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mollie/accepting-payments/revisions/4b45df3039ef/schema)
