> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usetapp.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Confirm Payment

> Submit a client-side deposit confirmation acknowledgment.

Confirm that the user has completed their stablecoin deposit transfer when your integration needs an explicit acknowledgement step.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique UUID ID of the order.
</ParamField>

### Response

<ResponseField name="status" type="string">
  Response state (`success`).
</ResponseField>

<ResponseField name="message" type="string">
  Confirmation success message.
</ResponseField>

***

### Example Payloads

<RequestExample>
  ```http Confirm Order theme={null}
  POST /v1/orders/0e0e76d4-44ee-4d4a-8e51-2e1f6e6d8a7c/confirm HTTP/1.1
  Host: b2b.usetapp.xyz
  ```
</RequestExample>

<ResponseExample>
  ```json Response (200 OK) theme={null}
  {
    "status": "success",
    "message": "Payment confirmation received"
  }
  ```
</ResponseExample>
