POST ticket/moviepass/startPaying/{appId}/{auth}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appId | integer |
Required |
|
| auth | string |
Required |
Body Parameters
MoviePassPayingRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
||
| name | string |
None. |
|
| phone | string |
None. |
|
| idMoviePass | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"email": "sample string 1",
"name": "sample string 2",
"phone": "sample string 3",
"idMoviePass": 4
}
application/xml, text/xml
Sample:
<MoviePassPayingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models"> <email>sample string 1</email> <idMoviePass>4</idMoviePass> <name>sample string 2</name> <phone>sample string 3</phone> </MoviePassPayingRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MoviePassPayingResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
None. |
|
| startUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "bb712f58-3d13-44a5-8ed1-66cd1d5cf925",
"startUrl": "sample string 2"
}
application/xml, text/xml
Sample:
<MoviePassPayingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tiszamozi_API.Models"> <id>bb712f58-3d13-44a5-8ed1-66cd1d5cf925</id> <startUrl>sample string 2</startUrl> </MoviePassPayingResponse>