POST ticket/reservation/startPaying/{sessionId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sessionId | globally unique identifier |
Required |
Body Parameters
PayingRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| sensoId | string |
None. |
|
| callbackUrl | string |
None. |
|
| string |
None. |
||
| name | string |
None. |
|
| phone | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"sensoId": "sample string 1",
"callbackUrl": "sample string 2",
"email": "sample string 3",
"name": "sample string 4",
"phone": "sample string 5"
}
application/xml, text/xml
Sample:
<PayingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models"> <callbackUrl>sample string 2</callbackUrl> <email>sample string 3</email> <name>sample string 4</name> <phone>sample string 5</phone> <sensoId>sample string 1</sensoId> </PayingRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PayingResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| startUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "390ad935-baa5-4967-a63a-2a12b0e1a0d4",
"startUrl": "sample string 2"
}
application/xml, text/xml
Sample:
<PayingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models"> <id>390ad935-baa5-4967-a63a-2a12b0e1a0d4</id> <startUrl>sample string 2</startUrl> </PayingResponse>