PUT receipts/{hostTransactionId}/signature

Saves a signature image to the receipt that is assoctiated with a successful payment transaction. Also provides a supplemental feature to send a receipt notification in one shot.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
hostTransactionId

The unique transaction identifier

integer

Required

Body Parameters

The requested payload

SaveSignatureWithNotificationRequest
NameDescriptionTypeAdditional information
ReceiptSignature

Base64-encoded string representing the cardholder's signature as captured by a POS device.

string

Required

ReceiptNotificationRequest

Request for sending a payment receipt notification.

ReceiptNotificationRequest

None.

Request Formats

application/json, text/json

Sample:
{
  "ReceiptSignature": "sample string 2",
  "ReceiptNotificationRequest": {
    "Emails": [
      {
        "Email": "sample string 1"
      },
      {
        "Email": "sample string 1"
      }
    ]
  }
}

Response Information

Resource Description

Saves a signature image to the receipt that is assoctiated with a successful payment transaction. Also provides a supplemental feature to send a receipt notification in one shot.

None.