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": "3ec0e72a-eb32-452a-8cc7-6ed5cfc972b1",
"orderId": "630d38d6-36d0-4029-941a-b2119d502daa",
"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>3ec0e72a-eb32-452a-8cc7-6ed5cfc972b1</clubcardId> <orderId>630d38d6-36d0-4029-941a-b2119d502daa</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": "1e2b7464-13b3-41e1-9106-6ddfcd54bbdf",
"paymentId": "7575fd03-e1c1-4112-91db-5374bbadd4af",
"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>1e2b7464-13b3-41e1-9106-6ddfcd54bbdf</objectId>
<paymentId>7575fd03-e1c1-4112-91db-5374bbadd4af</paymentId>
<result>
<code>OK</code>
<message>sample string 1</message>
</result>
</PayByClubcardResponse>