---
title: "Create Payment Link"
method: POST
path: "/v1/payment_links"
tags: ["Payment Links"]
---

# Create Payment Link

`POST /v1/payment_links`

Creates a new payment link.

## Headers

- `Authorization` string, required

## Request body

- object
  - `amount` integer, required — Amount in the smallest currency unit (e.g. 10000 = PHP 100.00). Minimum 100, maximum 999999999.
  - `currency` string, required — Three-letter ISO currency code (uppercase).
  - `description` string, required — Description of the payment link.
  - `remarks` string — Remarks attached to the payment link.
  - `metadata` object — Additional metadata (string values).
  - `restriction` object
    - `completed_sessions` object
      - `limit` integer — Maximum allowed completed sessions (0–100). Defaults to 1.

## Response `201`

Payment link created successfully.

- object
  - `data` object
    - `id` string, required — The unique identifier of the payment link.
    - `amount` integer, required — Amount in the smallest currency unit.
    - `currency` string, required — Three-letter ISO currency code.
    - `description` string — Description of the payment link.
    - `livemode` boolean, required — Indicates whether the payment link is live.
    - `remarks` string — Remarks attached to the payment link.
    - `status` string, required — Status of the payment link.
    - `url` string, required — Checkout URL of the payment link.
    - `reference_number` string, required — Reference number associated with the payment link.
    - `metadata` object, required — Additional metadata.
    - `restrictions` object
      - `completed_sessions` object
        - `count` integer
        - `limit` integer
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required

## Other responses

- `400` — Bad request.
- `401` — Unauthorized.
- `500` — Internal server error.

---

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