Export tickets and/or vouchercodes to PDF
Content
Resource URL
https://apps.ticketmatic.com/api/1/{accountname}/orders/{id}/pdf
Example
Request
1use Ticketmatic\Endpoints\Orders;
2
3$result = Orders::postpdf($client, $id, array(
4 "tickets" => array(
5 1,
6 2,
7 3,
8 ),
9 "vouchercodes" => array(
10 1,
11 2,
12 3,
13 ),
14));
Response
1object(\Ticketmatic\Model\Url) (1) {
2 ["url"]=>
3 string(26) "http://www.ticketmatic.com"
4}
Request body fields
Field | Description |
---|---|
tickets int[] (required) | Ticketids Example value:[ 1, 2, 3 ] |
vouchercodes int[] (required) | Vouchercodeids Example value:[ 1, 2, 3 ] |
Type reference: TicketsPdfRequest
Result fields
Field | Description |
---|---|
url string | Url. Example value:"http://www.ticketmatic.com" |
Type reference: Url