get
POST
/v1/installment-options
const url = 'https://api.lydiagate.com/v1/installment-options';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"bin":"example","terminalId":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.lydiagate.com/v1/installment-options \ --header 'Content-Type: application/json' \ --data '{ "bin": "example", "terminalId": "example" }'Request Bodyrequired
Bölüm başlığı “Request Bodyrequired”Media typeapplication/json
object
bin
string
terminalId
required
string
Examplegenerated
{ "bin": "example", "terminalId": "example"}Responses
Bölüm başlığı “Responses”OK
Media type*/*
object
cardBrand
string | null
cardFamily
string | null
cardBank
string | null
options
Array<object>
object
installmentCount
integer format: int32
rateBps
integer format: int32
fixedFee
integer | null format: int64