PaymentSignatures Test
TXN/Payment/Signatures/{paymentSignatureId}
Get details of a payment signature.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/TXN/Payment/Signatures/{paymentSignatureId}

URI Parameters

Parameter Name Data Type Required Notes
paymentSignatureId integer Y

Request Body

None.

No request body.

Response object type : PaymentSignature

Response object type PaymentSignature has the following properties.
Property Name Data Type Length Required Readonly Notes
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
Id integer N
PaymentId integer N
Signature Collection of byte N
UpdatedBy string N
UpdatedDateTime date N
{
  "CreatedDateTime": "2025-04-24T05:23:07.4091384-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "Id": 1,
  "UpdatedDateTime": "2025-04-24T05:23:07.4091384-07:00",
  "UpdatedBy": "sample string 3",
  "PaymentId": 4,
  "Signature": "QEA="
}
<PaymentSignature xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CreateLocation>sample string 1</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T05:23:07.4091384-07:00</CreatedDateTime>
  <Id>1</Id>
  <PaymentId>4</PaymentId>
  <Signature>QEA=</Signature>
  <UpdatedBy>sample string 3</UpdatedBy>
  <UpdatedDateTime>2025-04-24T05:23:07.4091384-07:00</UpdatedDateTime>
</PaymentSignature>
Change Version Description Contract Old New
Parameter Changed 15.0.0 paymentSignatureId has been marked as required. Required