Modify an existing contact title
Content
Resource URL
https://apps.ticketmatic.com/api/1/{accountname}/settings/system/contacttitles/{id}
Example
Request
1use Ticketmatic\Endpoints\Settings\System\Contacttitles;
2
3$result = Contacttitles::update($client, $id, array(
4 "name" => "Mr.",
5 "isinternal" => false,
6 "languagecode" => "nl",
7 "sex" => "M",
8));
Response
1object(\Ticketmatic\Model\ContactTitle) (8) {
2 ["id"]=>
3 int(0)
4 ["name"]=>
5 string(3) "Mr."
6 ["isinternal"]=>
7 bool(false)
8 ["languagecode"]=>
9 string(2) "nl"
10 ["sex"]=>
11 string(1) "M"
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}
Request body fields
Field | Description |
---|---|
name string (required) | Title name Example value:"Mr." |
isinternal bool (required) | Restricts this title from showing up on the websales pages
|
Type reference: ContactTitle
Result fields
Field | Description |
---|---|
id int | Unique ID Example value:123 |
name string | Title name Example value:"Mr." |
isinternal bool | Restricts this title from showing up on the websales pages |
languagecode string | Language for this title Example value:"nl" |
sex string | Gender associated with this title Example value:"M" |
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: ContactTitle