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

Payout Detail

Post

https://sandbox.luxtak.com/api/payout/detail

Get Payout Detail

This endpoint allow you get payout detail.

Parameters

Header

NameTypeDescription
Content-Type*stringapplication/json; chartset=UTF-8
AppId*stringGet App ID from dashboard.
Authorization*stringSHA256($sorted_params + $app_key)

Body

NameTypeDescription
transaction_id*stringluxtak transaction id
timestamp*integerunix timestamp, e.g. 1628512575

Responses

200Payout detail successfully retrieved
{
    "code": 200,
    "msg": "success",
    "time": 1628569551,
    "data": {
        "reference_id": "custom_codexxxx",
        "transaction_id": "TS202108090705014iNqtxektRS",
        "user_name": "GUILHERME ALVES DE SOUZA",
        "bank_id": "EXXXXD", // only supported by pix payout.
        "amount": "0.55",
        "source_amount": "3.58",
        "settlement_amount": "0.55",
        "source_currency": "BRL",
        "arrival_amount": "0.55",
        "arrival_currency": "BRL",
        "exchange_rate": "1",
        "tax": "0.02",
        "fee": "3.01",
        "fee_user": "merchant",
        "transaction_status": "PAID",
        "create_time": 1628492701,
        "update_time": 1628495767
    }
}
400Request has expired
{
    "code": 4001009,
    "msg": "request has expired",
    "time": 1628512773,
    "data": {}
}

Example

curl --location --request POST 'https://sandbox.luxtak.com/api/payout/detail' \
--header 'AppId: 94FAC**********************68548' \
--header 'Authorization: d6181db0d6548b94b162e75d095b59147172d914699f83b2bd17951a671b6302' \
--header 'Content-Type: application/json' \
--data-raw '{
    "transaction_id": "TPO2108090705014iNqtxektRS",
    "timestamp": 1628569550
}'

Tips

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

Prev
Payout List
Next
Payment Method