GET ticket/clubcard/payment/{paymentId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
paymentId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ClubcardPayment
NameDescriptionTypeAdditional information
paymentId

globally unique identifier

None.

amount

decimal number

None.

paymentType

ClubcardPaymentType

None.

objectIid

integer

None.

objectQty

integer

None.

downloadPage

string

None.

created

date

None.

Response Formats

application/json, text/json

Sample:
{
  "paymentId": "a4c09788-1169-434c-a94d-ce25fc992a23",
  "amount": 2.1,
  "paymentType": 1,
  "objectIid": 3,
  "objectQty": 4,
  "downloadPage": "sample string 5",
  "created": "2025-12-10T20:22:58.5351182+01:00"
}

application/xml, text/xml

Sample:
<ClubcardPayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models">
  <amount>2.1</amount>
  <created>2025-12-10T20:22:58.5351182+01:00</created>
  <downloadPage>sample string 5</downloadPage>
  <objectIid>3</objectIid>
  <objectQty>4</objectQty>
  <paymentId>a4c09788-1169-434c-a94d-ce25fc992a23</paymentId>
  <paymentType>MovieTicket</paymentType>
</ClubcardPayment>