curl --location 'https://myapp.com/api/payment/tabby/checkout/pre-scoring' \
--header 'X-Application-Token: {{app token}}' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer ...' \
--data-raw '{
"payment": {
"amount": "100",
"currency": "KWD",
"buyer": {
"phone": "+96590000001",
"email": "card.success@tabby.ai",
"name": "Test 1"
},
"shipping_address": {
"city": "Test",
"address": "Test 1",
"zip": "12345"
},
"order": {
"reference_id": "cart_id",
"items": [{
"category": "Category name",
"quantity": 1,
"title": "Test",
"unit_price": "100"
}],
}
},
"lang": "en"
"merchant_code": "..."
}'