# Sends a link by SMS

<span class="api-endpoint">POST {{<a href="#urlbases">baseURL</a>}}/pay-int-api/quick-payments/{{quickPaymentId}}/send-sms-notification</span>
This endpoint sends a one-time payment link to a customer through SMS.
<span class="api-seealso">See Also:</span><br>
To create a one-time payment link, see `POST /pay-int-api/quick-payments/one-time`<br>
To activate a link, see `POST /pay-int-api/quick-payments/{{quickPaymentId}}/activate`<br>
To deactivate a link, see `POST /pay-int-api/quick-payments/{{quickPaymentId}}/deactivate`<br>
To get a list of all one-time payments links, see `GET /pay-int-api/quick-payments/one-time`<br>
To get details for a specified one-time payments link, see `POST /pay-int-api/quick-payments/one-time/{{quickPaymentId}}`

Endpoint: POST /pay-int-api/quick-payments/{quickPaymentId}/send-sms-notification
Version: V1
Security: Bearer

## Path parameters:

  - `quickPaymentId` (string, required)
    Specifies the payment link identifier.

This value is returned from either:
* `POST /pay-int-api/quick-payments/one-time`
* `POST /pay-int-api/quick-payments/reusable`

## Header parameters:

  - `x-api-version` (string)

## Request fields (application/json):

  - `phoneNumber` (string)
    Indicates the SMS phone number.
Example: +14155552309
    Example: +14155552309

  - `customerConsent` (boolean)
    Indicates the customer has consented to receiving the SMS.
If `true`, the customer has consented to receiving the SMS.
If `false`, the customer has not consented to receiving the SMS.
Example: true
    Example: true

