Get a list of ticket layouts

Content

Resource URL

https://apps.ticketmatic.com/api/1/{accountname}/settings/communicationanddesign/ticketlayouts

Example

Request

 1use Ticketmatic\Endpoints\Settings\Communicationanddesign\Ticketlayouts;
 2
 3$result = Ticketlayouts::getlist($client, array(
 4    "typeid" => 1,
 5    "filter" => "SELECT id FROM tm.ticketlayout WHERE createdts > (now() - INTERVAL '1 year')",
 6    "includearchived" => true,
 7    "lastupdatesince" => "2014-09-26 15:24:36",
 8));
 9
10// The parameters array is optional, it can be omitted when empty.
11$result = Ticketlayouts::getlist($client);

Response

 1object(Ticketmatic\Endpoints\Settings\Communicationanddesign\TicketlayoutsList) (1) {
 2  ["data"]=>
 3  array(1) {
 4    [0]=>
 5    object(\Ticketmatic\Model\TicketLayout) (6) {
 6      ["id"]=>
 7      int(0)
 8      ["typeid"]=>
 9      int(0)
10      ["name"]=>
11      string(8) "Festival"
12      ["isarchived"]=>
13      bool(false)
14      ["createdts"]=>
15      object(\DateTime) (3) {
16        ["date"]=>
17        string(26) "2014-09-26 15:24:36.000000"
18        ["timezone_type"]=>
19        int(3)
20        ["timezone"]=>
21        string(3) "UTC"
22      }
23      ["lastupdatets"]=>
24      object(\DateTime) (3) {
25        ["date"]=>
26        string(26) "2014-09-26 15:24:36.000000"
27        ["timezone_type"]=>
28        int(3)
29        ["timezone"]=>
30        string(3) "UTC"
31      }
32    }
33  }
34}

Request

 1import (
 2    "github.com/ticketmatic/tm-go/ticketmatic"
 3    "github.com/ticketmatic/tm-go/ticketmatic/settings/communicationanddesign/ticketlayouts"
 4)
 5
 6result, err := ticketlayouts.Getlist(client, &ticketmatic.TicketLayoutQuery{
 7    Typeid: 1,
 8    Filter: "SELECT id FROM tm.ticketlayout WHERE createdts > (now() - INTERVAL '1 year')",
 9    Includearchived: true,
10    Lastupdatesince: ticketmatic.NewTime(ticketmatic.MustParseTime("2014-09-26 15:24:36")),
11})
12
13// The query object is optional, it can be omitted when empty.
14result, err := ticketlayouts.Getlist(client, nil)

Response

 1result := ticketlayouts.&List{
 2    Data: []*ticketmatic.TicketLayout{
 3        &ticketmatic.TicketLayout{
 4            Id: 123,
 5            Typeid: 1,
 6            Name: "Festival",
 7            Isarchived: false,
 8            Createdts: ticketmatic.NewTime(ticketmatic.MustParseTime("2014-09-26 15:24:36")),
 9            Lastupdatets: ticketmatic.NewTime(ticketmatic.MustParseTime("2014-09-26 15:24:36")),
10        },
11    },
12}

Request

1GET /api/1/{accountname}/settings/communicationanddesign/ticketlayouts HTTP/1.1

Response

 1HTTP/1.1 200 OK
 2Content-Type: application/json
 3
 4{
 5    "data": [
 6        {
 7            "id": 123,
 8            "typeid": 1,
 9            "name": "Festival",
10            "isarchived": false,
11            "createdts": "2014-09-26 15:24:36",
12            "lastupdatets": "2014-09-26 15:24:36"
13        }
14    ]
15}

Parameters

FieldDescription
typeid
int

Only return items with the given typeid.

Example value:1
filter
string

Filter the returned items by specifying a query on the public datamodel that returns the ids.

Example value:"SELECT id FROM tm.ticketlayout WHERE createdts > (now() - INTERVAL '1 year')"
includearchived
bool

If this parameter is true, archived items will be returned as well.

Example value:true
lastupdatesince
timestamp

All items that were updated since this timestamp will be returned. Timestamp should be passed in YYYY-MM-DD hh:mm:ss format.

Example value:"2014-09-26 15:24:36"

Type reference: TicketLayoutQuery

Result fields

This call returns an object with an array of objects in the data field.

FieldDescription
id
int

Unique ID

Example value:123
typeid
int

Type ID

Example value:1
name
string

Name for the ticket layout

Example value:"Festival"
isarchived
bool

Whether or not this item is archived

createdts
timestamp

Created timestamp

Example value:"2014-09-26 15:24:36"
lastupdatets
timestamp

Last updated timestamp

Example value:"2014-09-26 15:24:36"

Type reference: TicketLayout[]