secure
subdomain. Requires the merchant to have a PCI DSS certificate and allows direct card data transmission between servers (host-to-host).token
subdomain. Enables recurring payments using previously obtained tokens.init
subdomain. Does not require PCI DSS. Used to initiate a payment without card data; the user is then redirected to a web form to enter card details.secure
subdomain.additionalFields
for deposit and payout. Here's an example of a query using bankName
:curl --request POST \
--url https://secure.PayStar.uk/api/v1/integration/deposit-order \
--header 'Authorization: Bearer YOUR TOKEN' \
--header 'Content-Type: application/json' \
--header 'accept: text/plain' \
--data '{
"amount": 100
"currency": "USD"
"additionalFields": [
{
"key": "сardNumber"
"value": "1234123412341234"
},
{
"key": "bankName"
"value": "all"
}
]
}'