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

Get Transaction Details

Retrieves detailed information about a specific transaction.

Endpoint

GET /whitelabel/transactions/getDetails

Request Headers

x-tlp-apikey: <api-key>
x-tlp-signature: <hmac-signature>

Query Parameters

Provide at least one of the following user identifiers: endUserEmail, endUserId, or externalUserId.

Field
Type
Required
Description

endUserEmail

String

Conditional

End user’s registered email address

endUserId

Number

Conditional

Tylt end-user ID

externalUserId

String

Conditional

Merchant’s own user identifier

transactionid

Number

Yes

The transaction's identifier

Example Request

GET /whitelabel/transactions/getDetails?externalUserId=user-10021&transactionId=98765

Signed query object:

{
  "endUserId": 20001, // Optional: Provide one user identifier only
  "endUserEmail": "joe@example.com", // Optional: Alternative to endUserId and externalUserId
  "externalUserId": "user-10021", // Optional: Alternative to endUserId and endUserEmail
  "transactionId": 98765
}

Code Snippet

Example Response

The exact response fields vary by transaction type.

Transaction Ownership

Tylt scopes the request by the resolved end user.

A merchant cannot retrieve a transaction that belongs to:

  • Another end user

  • Another merchant

  • An unrelated Tylt wallet account


Last updated