Skip to main content
GET
https://staging.api.tribease.com/v2
/
v2
/
payment-intents
/
{id}
Get Payment Intent Details
curl --request GET \
  --url https://staging.api.tribease.com/v2/v2/payment-intents/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "amount": "<string>",
  "totalAmount": "<string>",
  "currency": "<string>",
  "receiptEmail": "<string>",
  "customerEmail": "<string>",
  "country": "<string>",
  "status": "<string>",
  "checkoutLink": "<string>",
  "clientReference": "<string>",
  "paymentMethods": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": [
        {
          "name": "<string>"
        }
      ]
    }
  ],
  "callbackUrl": "<string>",
  "transaction": "<string>",
  "meta": [
    {}
  ],
  "settlementAccount": {
    "id": "<string>",
    "accountName": "<string>",
    "accountNumber": "<string>",
    "bankName": "<string>",
    "bankCode": "<string>",
    "createdAt": {},
    "updatedAt": {}
  },
  "createdAt": {},
  "updatedAt": {}
}

Request Path Parameter

id
string
required
The ID of the Payment Intent.

Response Data

id
string
required
The ID of the Payment Page
amount
string
required
Amount
totalAmount
string
required
Total Amount that will be paid out
currency
string
required
Currency
receiptEmail
string
Email to receive transaction receipt. If no value is specified, the customer email will get transaction receipt
customerEmail
string
required
Email of the customer
country
string
Country of the Payment Intent
status
string
required
Payment Intent status
Payment Intent link.
clientReference
string
required
Payment Intent unique reference supplied by the client.
paymentMethods
array
callbackUrl
string
Callback URL
transaction
string
Transaction reference associated with the Payment Intent
meta
array
More information about the payment page
settlementAccount
Settlement Account Object
createdAt
datetime
required
Payment Page created time.
updatedAt
datetime
required
Payment Page updated time.