Receipts Beta

Send branded receipts to payers for each transfer.

Send a branded receipt which displays your logo, company name, and links to your customer service portals. You can send a receipt to the payer, the payee, or both. Branded receipts can be sent in the following scenarios:

  • Transfer has been initiated or confirmed
  • Transfer has been refunded
  • Transfer in a series has failed
Receipt email

Send receipts

Send a receipt using the transfer receipts POST endpoint. The examples below show how to send a receipt for a single transfer, a series of transfers, and a single occurrence in a series of transfers.

If you want to send a receipt to a different email address, you can specify the email field instead of emailAccountID.

For a single transfer, use forTransferID and Moov will send the confirmation, refund, or failure receipt to the payer.

1
2
3
4
5
{
  "kind": "sale.customer.v1",
  "emailAccountID": "moov-account-id",
  "forTransferID": "transfer-id"
}

Schedule receipts for a series of transfers by using forScheduleID. Moov will send the confirmation, refund, or failure receipt to the payer on every occurrence.

1
2
3
4
5
{
  "kind": "sale.customer.v1",
  "emailAccountID": "moov-account-id",
  "forScheduleID": "schedule-id"
}

For an individual occurrence in a series of transfers, use forOccurrenceID. Moov will send the confirmation, refund, or failure receipt to the payer.

1
2
3
4
5
{
  "kind": "sale.customer.v1",
  "emailAccountID": "moov-account-id",
  "forOccurrenceID": "occurrence-id"
}

Retrieve receipts

You can retrieve a list of receipts with the transfer receipts GET endpoint. The following is an example response:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
[
  {
    "createdBy": "25a02396-1048-48f9-bf93-102d2fb7895e",
    "disabledOn": "2009-11-10T23:00:00Z",
    "email": "jordan.lee@classbooker.dev",
    "forTransferID": "193ceb53-94c7-41c4-9272-c90c2832cb4c",
    "kind": "sale.customer.v1",
    "receiptID": "4925c8a5-3b9a-4488-a514-9fd992546aca",
    "sentFor": [
      {
        "idempotencyKey": "0c14c6a6-6f50-4d1e-b0c4-b46ff43ba6a1",
        "receiptID": "4925c8a5-3b9a-4488-a514-9fd992546aca",
        "sentOn": "2009-11-10T23:00:00Z"
      }
    ]
  }
]

Transfer description

When creating a transfer, you can provide a description that will be included in the receipt. This is useful for providing additional context to the payer. If no description is provided, the line item will simply include “Sale”.

Sales tax

For transfers that include sales tax, the emailed receipt will include a breakdown of the sales tax amount and the total amount paid. When sales tax is not set, the receipt will only include the total amount paid.

Receipt emails

Receipt emails are optimized to work on all screen sizes and for all email clients.

Sales / purchases

Receipts for purchases include the following details:

  • Transfer amount
  • Transfer date
  • Receipt ID
  • Transfer description (if provided)
  • Source payment method
  • Sales tax amount and total amount paid (if applicable)
  • Issuer confirmation number (if applicable)

Refunds

Receipts for refunds include the following details:

  • Refund amount
  • Refund date
  • Original payment method
  • Receipt ID

Failures

Receipts for failed transfers include the following details:

  • Transfer amount
  • Receipt ID
  • Source payment method
Summary Beta