+49 69 83008980 service@xqueue.com
Benötigen Sie Hilfe?

Im Maileon Help-Center finden Sie umfassende Dokumentationen zu unserem System.

Beliebte Suchanfragen: Importe | Rest-API | Integrationen | SMS

Get Transaction

Retreives the content of a transaction of the given type with the given ID. The ID of the transaction must be specified in a special transaction attribute „transaction_id“, see https://support.maileon.com/support/create-transaction-type/#articleTOC_4.
If the transaction_id is generated externally, it is not guaranteed to be unique, in this case Maileon returns the first found result, only. As the same ID might be used in transactions of different transaction types, the type must also be specified.

GET https://api.maileon.com/1.0/transactions/:transactionTypeId/transaction_id/:transactionId

Path Parameters

Name Description
transactionTypeId The ID of the transaction type.
transactionId The transaction ID. If not unique, the first found occurence will be used.

Example

GET https://api.maileon.com/1.0/transactions/68/custom/abc123
Authorization: Basic: XXXXXXXXXXXXXXXX

Status: 200 OK
Content-Type: application/json

{
    "transaction_id": "abc123",
    "name": "Max Mustermann",
    "url": "https://..."
}
Inhaltsverzeichnis