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

# Verify Payment Intent

## Request Body Parameters

The body parameter can be either of the following:

<ParamField body="clientReference" type="string">
  Reference of the Payment Intent that was supplied by the client.
</ParamField>

<ParamField body="transactionReference" type="string">
  Transaction Reference of the Payment Intent.
</ParamField>

## Response Data

<ResponseField name="status" type="string" required>
  The status of the response
</ResponseField>

<ResponseField name="title" type="string" required>
  The title of the response
</ResponseField>

<ResponseField name="data" type="array" required>
  <Expandable title="properties">
    <ResponseField name="status" type="int" required>
      The status of the payment Intent. This is the status to checkout for. Possible values include: initiated, processing, requires\_payment\_method, succeeded, canceled, failed
    </ResponseField>

    <ResponseField name="detail" type="string" required>
      Detailed description of the Payment Intent status
    </ResponseField>

    <ResponseField name="clientReference" type="string" required>
      The unique reference supplied by the client
    </ResponseField>

    <ResponseField name="transactionReference" type="string" required>
      The Payment Intent transaction reference
    </ResponseField>
  </Expandable>
</ResponseField>
