POST ticket/clubcard/payOrder/{appId}/{auth}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
appId

integer

Required

auth

string

Required

Body Parameters

PayOOrdeByClubcardRequest
NameDescriptionTypeAdditional information
clubcardId

globally unique identifier

None.

orderId

globally unique identifier

None.

transactionId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "clubcardId": "c0d2bc70-b39d-4ffe-b2b7-76990789df8b",
  "orderId": "e25e75bf-5a6a-446b-9484-0b6de7c7c038",
  "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>c0d2bc70-b39d-4ffe-b2b7-76990789df8b</clubcardId>
  <orderId>e25e75bf-5a6a-446b-9484-0b6de7c7c038</orderId>
  <transactionId>sample string 3</transactionId>
</PayOOrdeByClubcardRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PayByClubcardResponse
NameDescriptionTypeAdditional 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": "b695f6ff-612f-4470-babe-ad7851de7a97",
  "paymentId": "c64e749a-3dc3-4f50-8b88-f0afbe095c05",
  "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>b695f6ff-612f-4470-babe-ad7851de7a97</objectId>
  <paymentId>c64e749a-3dc3-4f50-8b88-f0afbe095c05</paymentId>
  <result>
    <code>OK</code>
    <message>sample string 1</message>
  </result>
</PayByClubcardResponse>