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": "f3e6ac0a-9f54-4532-994c-551232c99241",
"ticketId": "7b985923-87ed-42cd-97d5-de6b8c49bab5"
}
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>f3e6ac0a-9f54-4532-994c-551232c99241</clubcardId> <ticketId>7b985923-87ed-42cd-97d5-de6b8c49bab5</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": "e8e6860c-ae9f-4a58-83a2-7455abd07825",
"paymentId": "8f48fc99-44c2-43b1-9ae5-df7fb8206233",
"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>e8e6860c-ae9f-4a58-83a2-7455abd07825</objectId>
<paymentId>8f48fc99-44c2-43b1-9ae5-df7fb8206233</paymentId>
<result>
<code>OK</code>
<message>sample string 1</message>
</result>
</PayByClubcardResponse>