POST ticket/clubcard/payMovieTicket/{appId}/{auth}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appId | integer |
Required |
|
| auth | string |
Required |
Body Parameters
PayMovieTicketByClubcardRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| clubcardId | globally unique identifier |
None. |
|
| ticketId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"clubcardId": "b18c8bce-2376-43e9-9a5b-f4d70e9240e0",
"ticketId": "9af628f1-7803-4be0-9ede-51f173a0075c"
}
application/xml, text/xml
Sample:
<PayMovieTicketByClubcardRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models"> <clubcardId>b18c8bce-2376-43e9-9a5b-f4d70e9240e0</clubcardId> <ticketId>9af628f1-7803-4be0-9ede-51f173a0075c</ticketId> </PayMovieTicketByClubcardRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PayByClubcardResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| result | ClubcardResult |
None. |
|
| itemType | integer |
None. |
|
| objectId | globally unique identifier |
None. |
|
| paymentId | globally unique identifier |
None. |
|
| downloadPage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": {
"code": 0,
"message": "sample string 1"
},
"itemType": 1,
"objectId": "ad5dead7-1b8a-4cac-9220-7032b8873c97",
"paymentId": "e8033450-616b-46a2-b601-17f783584871",
"downloadPage": "sample string 4"
}
application/xml, text/xml
Sample:
<PayByClubcardResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models">
<downloadPage>sample string 4</downloadPage>
<itemType>1</itemType>
<objectId>ad5dead7-1b8a-4cac-9220-7032b8873c97</objectId>
<paymentId>e8033450-616b-46a2-b601-17f783584871</paymentId>
<result>
<code>OK</code>
<message>sample string 1</message>
</result>
</PayByClubcardResponse>