Tamara · Example Payload

Tamara Pre Checkout Eligibility Example

BNPLBuy Now Pay LaterFintechPaymentsCheckoutShariah CompliantMENASaudi ArabiaUAEInstallmentsPay LaterMerchant ServicesOrdersRefundsCapturesWebhooksDisputesChannel PartnersE-commercePOS

Tamara Pre Checkout Eligibility Example is an example object payload from Tamara, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api-sandbox.tamara.co/pre-checkout/v1/eligibility",
    "headers": {
      "Authorization": "Bearer {{TAMARA_API_TOKEN}}",
      "Content-Type": "application/json"
    },
    "body": {
      "order": { "amount": 300, "currency": "SAR" },
      "customer": { "phone": "966501234567" }
    }
  },
  "response": {
    "status": 200,
    "body": { "is_eligible": true }
  }
}