POST ticket/clubcard/payOrder/{appId}/{auth}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appId | integer |
Required |
|
| auth | string |
Required |
Body Parameters
PayOOrdeByClubcardRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| clubcardId | globally unique identifier |
None. |
|
| orderId | globally unique identifier |
None. |
|
| transactionId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"clubcardId": "f65a95e2-f6b2-4949-94c5-1e4f07016305",
"orderId": "179afe82-e743-419a-bda7-869e9a5053bb",
"transactionId": "sample string 3"
}
application/xml, text/xml
Sample:
<PayOOrdeByClubcardRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models"> <clubcardId>f65a95e2-f6b2-4949-94c5-1e4f07016305</clubcardId> <orderId>179afe82-e743-419a-bda7-869e9a5053bb</orderId> <transactionId>sample string 3</transactionId> </PayOOrdeByClubcardRequest>
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": "1f1af195-6871-4665-80ee-b6f1e24004ac",
"paymentId": "4d264467-20bf-4494-a04c-973ba0156303",
"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>1f1af195-6871-4665-80ee-b6f1e24004ac</objectId>
<paymentId>4d264467-20bf-4494-a04c-973ba0156303</paymentId>
<result>
<code>OK</code>
<message>sample string 1</message>
</result>
</PayByClubcardResponse>