LuxtakLuxtak
  • Introduction
  • Payin API
    • Environments
    • All-In-One Checkout
      • Checkout Page (General)
      • Checkout Page (E-com)
    • Direct integration
      • Brazil
        • Pix
      • Mexico
        • Cash
        • CoDi
        • SPEI
      • Colombia
        • Wallet
        • PSE
      • Chile
        • Bank Transfer
        • Wallet
      • Peru
        • Bank Transfer
        • Cash
      • Ecuador
        • Bank Transfer
        • Cash
      • Russia
        • CreditCard
        • SBP
        • SberPay
        • TPay
        • Vault
      • Global
        • Crypto
        • Binance
    • Notification
      • Security
    • Recurring Payment
      • Support Target and Currency
    • Tokenization
    • Payin Detail
    • Refund
    • Data
      • Payment Method
      • Data for test (Sandbox)
      • Payin Status
      • Icon of methods
      • Country Code
    • API Code
  • Payout API
    • Environments
    • Security
    • Submit a payout
      • Brazil
        • Pix
      • Russia
        • SBP
      • Global
        • Crypto
    • Notification
    • Account Balance
    • Payout Status
    • Payout Bank List
    • Payout List
    • Payout Detail
    • Payment Method
    • Data for test
    • API Code

luxtak Wallet

How to use luxtak Wallet to submit a payout.

  • H5 Authorization

  • Native App Authorization

  • Send Prizes

Environment

EnvironmentAPI
sandboxhttps://sandbox.luxtak.com/api/payout
producthttps://api.luxtak.com/api/payout

HTTP Method

POST

HTTP Header

HeaderTypeRequiredDescription
Content-TypeStringYesapplication/json; charset=UTF-8
AppIdStringYesYour App ID in payout platform
AuthorizationStringYesSHA256($sorted_params + $app_key)

HTTP Body(Only JSON Supported)

ParameterTypeRequiredDescription
nameStringNoBeneficiary's name
Min.5 Max.100
phoneStringNoBeneficiary's phone
- Max.15 -
emailStringNoBeneficiary's email
accountStringYesluxtak Wallet account
account_typeStringYesFixed Value: UUID
methodStringYesFixed Value: WALLET
channelStringYesFixed Value: luxtak
amountNumeric StringYesPayout amount
- Min 0.01, Max 50,000 -
amount_typeStringNoSpecify the amount value is fixed for merchant or beneficiary:
source_amount, arrival_amount(default)
fee_bearStringYesOne of [beneficiary
custom_codeStringYesMerchant's order id
- Max.50 -
source_currencyStringYesMerchant's account currency, supported: USD, GBP, EUR
arrival_currencyStringYesBeneficiary's account currency, BRL or MXN
notify_urlStringYesWhere luxtak will callback to
additional_remarkStringYesPayout Additional Remark, Max length: 40
countryStringYesCountry code, BRA or MEX

Request Example

// test demo by curl
curl --location --request POST 'https://sandbox.luxtak.com/api/payout' \
--header 'AppId: 94FAC**********************68548' \
--header 'Authorization: d6181db0d6548b94b162e75d095b59147172d914699f83b2bd17951a671b6302' \
--header 'Content-Type: application/json' \
--data-raw '{
      "name": "Alan **** **** Santana",
      "email": "[email protected]",
    * "account": "f341************************0844",
    * "account_type": "UUID",
    * "amount": "10.00",
    * "source_currency": "USD",
    * "arrival_currency": "BRL",
    * "custom_code": "custom_code_pwallet_10010", // merchant order id
    * "fee_bear": "merchant",
    * "method": "WALLET",
    * "channel": "luxtak",
    * "notify_url": "https://sandbox.luxtak.com/api/notify/demo",
    * "additional_remark": "Luxtak wallet test",
    * "country": "BRA"
}'

Tips

Note: 94FAC**********************68548 is luxtak's test App ID for sandbox, and d6181db0d6548b94b162e75d095b59147172d914699f83b2bd17951a671b6302 is authorization token associated with the test App ID.

HTTP Response

// success
{
    "code": 200,
    "msg": "success",
    "time": 1628580845,
    "data": {
        "id": "TS202108100734054iRiUZFPXfQWB", // luxtak payout id
        "custom_code": "custom_code9982674851738108", // merchant order id
        "arrival_amount": "100",
        "arrival_currency": "BRL",
        "source_amount": "0.07",
        "source_currency": "USD",
        "status": "IN_PROCESSING"
    }
}
// bad request
{
    "code": 4001000,
    "msg": "invalid parameter",
    "time": 1637224716,
    "data": {
        ... ...
    }
}
// persmission denied
{
    "code": 4004003,
    "msg": "permission denied",
    "time": 1637224716,
    "data": {
        ... ...
    }
}
// balance insufficient
// balance insufficient
{
    "code": 5001102,
    "msg": "balance insufficient",
    "time": 1637224716,
    "data": {
        ... ...
    }
}
// system error
{
    "code": 5001000,
    "msg": "system error",
    "time": 1637224716,
    "data": {
        ... ...
    }
}

Supported Countries

CountryCountry CodeCurrency
BrazilBRABRL
MexicoMEXMXN

​