> For the complete documentation index, see [llms.txt](https://docs.vesicash.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vesicash.com/api-documentation/payments/continue-payment.md).

# Continue payment

This endpoint allows the user to continue a payment with the given payment reference.

The endpoint /v1/payment/pay/:payment\_reference/continue is a POST request to continue a card payment. No request body parameters are required for this request.

#### <mark style="color:green;">POST:</mark> v1/payment/pay/:payment\_reference/continue

\
**Params**

| Name               | Type   | Description                                                        |
| ------------------ | ------ | ------------------------------------------------------------------ |
| payment\_reference | string | The payment reference that was generated when initializing payment |

#### Headers

| Name       | Type   | Description              |
| ---------- | ------ | ------------------------ |
| secret-key | string | Your Vesicash secret key |
| public-key | string | Your Vesicash public key |

#### Response

```
{
    "status": "success",
    "code": 200,
    "message": "success",
    "data": "payment sent for processing"
}
```
