create_payment_link
Create a payment link in GEL for Georgia via TBC Bank (T-Pay). Buyer pays with cards, TBC internet banking, Apple Pay / Google Pay via TBC Bank checkout. Returns a hosted checkout URL the buyer opens to pay — payment completes automatically, no confirm step. Bring your own credentials via HTTP header (x-tbc-api-key; free test credentials from developers.tbcbank.ge never move real money). Money always flows buyer→TBC Bank→merchant; this service never touches funds.
Parameters4
| amount_gel | number | required | Amount in GEL (decimals allowed), e.g. 10. Minimum 1. |
| description | string | required | What this payment is for (shown to the buyer, ≤200 chars) |
| customer_email | string | optional | Optional buyer email. |
| success_url | string | optional | Optional https URL to send the buyer to after payment. |
Raw schema
{
"type": "object",
"properties": {
"amount_gel": {
"type": "number",
"minimum": 1,
"maximum": 1000000,
"description": "Amount in GEL (decimals allowed), e.g. 10. Minimum 1."
},
"description": {
"type": "string",
"description": "What this payment is for (shown to the buyer, ≤200 chars)"
},
"customer_email": {
"type": "string",
"description": "Optional buyer email."
},
"success_url": {
"type": "string",
"description": "Optional https URL to send the buyer to after payment."
}
},
"required": [
"amount_gel",
"description"
]
}