---
title: "Send a payment link"
method: POST
path: "/payment-links/{link_id}/send"
tags: ["Payments"]
---

# Send a payment link

`POST /payment-links/{link_id}/send`

Send a payment link via email or SMS to your customer, the customer can then follow the link and make the payment. You are required to generate a Hosted Checkout payment link using the /payment-links endpoint and then append the `link_id` to this request.

## Path parameters

- `link_id` string, uuid, required

## Headers

- `Company-Id` string, uuid
- `Mid` string, uuid

## Request body

- object
  - `type` 'sms' | 'email' — The type of payment link being sent to the customer.
  - `phone` object
    - `country_code` string — The international dialling code of the customer's phone number.
    - `number` string — The customer's phone number.
  - `email` string, email — The customer's email address.
  - `message` string — The message to be sent with the payment link. This should include both the text and the fully constructed payment link. (The payment link that will be displayed to the customer will be shortened.)

## Response `200`

OK

- object
  - `status` 'success' — The outcome of the request

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `409` — Conflict

---

[API](https://skmtc.dev/acquired/apis/acquired-api.md) · [All operations](https://skmtc.dev/acquired/apis/acquired-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/acquired/acquired-api/revisions/7ae178a046f2/schema)
