POST ticket/clubcard/payByClubcard/{appId}/{auth}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appId | integer |
Required |
|
| auth | string |
Required |
Body Parameters
PayByClubcardRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| sessionId | globally unique identifier |
None. |
|
| clubcardId | globally unique identifier |
None. |
|
| paymentType | ClubcardPaymentType |
None. |
|
| objectId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"sessionId": "6b47a343-af9f-48ae-a8f7-3c541d30151a",
"clubcardId": "24abc813-c2e8-4a17-b354-b9bdf9679eb7",
"paymentType": 1,
"objectId": "0fac346e-4756-43c4-a3f6-6ac756606d61"
}
application/xml, text/xml
Sample:
<PayByClubcardRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models"> <clubcardId>24abc813-c2e8-4a17-b354-b9bdf9679eb7</clubcardId> <objectId>0fac346e-4756-43c4-a3f6-6ac756606d61</objectId> <paymentType>MovieTicket</paymentType> <sessionId>6b47a343-af9f-48ae-a8f7-3c541d30151a</sessionId> </PayByClubcardRequest>
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": "33b72559-8ad8-45e9-b5d8-4ce988ae2956",
"paymentId": "16b5057f-3b5f-49ca-a00c-38f990b93227",
"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>33b72559-8ad8-45e9-b5d8-4ce988ae2956</objectId>
<paymentId>16b5057f-3b5f-49ca-a00c-38f990b93227</paymentId>
<result>
<code>OK</code>
<message>sample string 1</message>
</result>
</PayByClubcardResponse>