POST ticket/tablebooking/startPay/{appId}/{auth}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appId | integer |
Required |
|
| auth | string |
Required |
Body Parameters
StartTBPayRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| sensoId | integer |
None. |
|
| string |
None. |
||
| name | string |
None. |
|
| phone | string |
None. |
|
| tables | Collection of integer |
None. |
|
| start | date |
None. |
|
| stop | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"sensoId": 1,
"email": "sample string 2",
"name": "sample string 3",
"phone": "sample string 4",
"tables": [
1,
2
],
"start": "2025-12-11T18:40:42.9222448+01:00",
"stop": "2025-12-11T18:40:42.9222448+01:00"
}
application/xml, text/xml
Sample:
<StartTBPayRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models">
<email>sample string 2</email>
<name>sample string 3</name>
<phone>sample string 4</phone>
<sensoId>1</sensoId>
<start>2025-12-11T18:40:42.9222448+01:00</start>
<stop>2025-12-11T18:40:42.9222448+01:00</stop>
<tables xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</tables>
</StartTBPayRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StartTBPayResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| startUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "e24dff02-1df4-48fa-8969-a96ff0fc799f",
"startUrl": "sample string 2"
}
application/xml, text/xml
Sample:
<StartTBPayResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models"> <id>e24dff02-1df4-48fa-8969-a96ff0fc799f</id> <startUrl>sample string 2</startUrl> </StartTBPayResponse>