For the complete documentation index, see llms.txt. This page is also available as Markdown.

Creating a Payout Request

This resource allows users to submit cryptocurrency payouts to active recipients. It caters to various use cases such as offering cryptocurrency withdrawals to clients, facilitating payouts for marketplaces or affiliate networks, or managing payroll by creating multiple payouts at a time.

Endpoint

POSThttps://api.tylt.money/transactions/merchant/createPayoutRequest

Request Headers

Name
Type
Example
Description

X-TLP-APIKEY

string

93ee3c5e133697251b5362bcf9cc8532476785t8768075616f58d88

Your Tylt API Key, used to identify your account in API requests.

X-TLP-SIGNATURE

string

d0afef3853dfc8489c8b9affa5825171fdd7y7685675e4966a05f66ed2b3eaf9462b3c9c0

HMAC SHA-256 signature generated using the API Secret Key to secure the request.

When using the API, ensure to include your API Key and generate the signature for the request payload using your API Secret. The tables provided above contain example values for illustration purposes only. Please refer to the code snippets for detailed instructions on how to sign the request and generate the signature properly.

Request Body

Field Name

Type

Description

merchantOrderId

string

The order ID provided by the Merchant for local reference.

baseAmount

number

The amount of currency to be sent.

baseCurrency

string

Optional: To be used if the amount into crypto to be sent is expressed as FIAT. The baseCurrency symbol must be of the FIAT currency. Check supporting baseCurrency API for more details.

address

string

The recipient's address for the payout.

settledCurrency

string

The currency in which the payout will be made (symbol).

networkSymbol

string

The network to be used for the payout (e.g., BSC).

customerName

string

Optional: Customer's name for the transaction.

comments

string

Optional: Comments for additional context.

callBackUrl

string

Optional: URL for the callback after transaction completion.

redirectUrl

string

Optional: URL for the redirection after transaction completion.

beneficiaryDetails

jsonObject

Mandatory object containing Travel Rule data for the transaction originator, required for AML/CFT compliance. Structure varies by entityType.

entityType Specifies originator type: individual or company.

individual Required if entityType = individual. =========================== firstName, lastName, DOB (YYYY-MM-DD), placeOfBirth

company Required if entityType = company. =========================== fullName, "address": { "country": "DEU", "town": "Berlin", "postCode": "10115", "street": "Chauseestr.", "buildingNumber": "60" }

Code Snippet

Response

Field Name

Type

Description

orderId

String

The order ID generated by TL Pay, used as a global identifier.

merchantOrderId

String

The merchant's local order ID for reference (optional).

settledCurrency

String

The cryptocurrency or token used for payout.

settledAmountRequested

Number

The amount of cryptocurrency or token requested to be paid out.

settledAmountDebited

Number

The amount of cryptocurrency debited from your merchant balance.

settledAmountSent

Number

The total amount of cryptocurrency sent to the recipient.

commission

Number

The commission deducted from the payout transaction.

network

String

The blockchain network over which the payout is made (e.g., "BSC").

toAddress

String

The recipient's wallet address where the payout will be sent.

status

String

The status of the payout (e.g., "Pending", "Completed", "Failed").

insufficientBalance

Number

Indicates if there is insufficient balance for the transaction (1 = Yes, 0 = No).

paymentURL

String

The URL where the customer can make the payment (if applicable).

callBackURL

String

The callback URL specified by the merchant (optional).

transactions

Array

Details of any individual transactions linked to this payout (if applicable).

createdAt

String

The timestamp when the payout request was created.

expiresAt

String

The timestamp when the payout request will expire.

updatedAt

String

The timestamp when the payout request was last updated.

isFinal

Number

Indicates if the transaction is final (1 for completed, 0 for pending).

isDebited

Number

Indicates if the payout amount has been debited from your merchant account.

customerName

String

The name of the customer associated with the transaction (optional).

comments

String

Any comments or notes provided by the merchant (optional).

Last updated