Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Additionally you can have a look at the REST interface documentation of Zammad:
* [Ticket priorities](https://docs.zammad.org/en/latest/api/ticket-priority.html)
* [Ticket states](https://docs.zammad.org/en/latest/api/ticket-state.html)
* [Tags](https://docs.zammad.org/en/latest/api/tags.html)
* [Tag list](https://docs.zammad.org/en/latest/api/ticket/tags.html#administration-scope)

#### Fetching a ticket's articles
If you already have a ticket object, you can easily fetch its articles:
Expand Down Expand Up @@ -307,7 +308,7 @@ $client->resource( ResourceType::TICKET );
| ORGANIZATION|✔|✔|✔|✔|✔|–|–|✔|
| GROUP|✔|✔|–|✔|✔|–|–|–|
| USER|✔|✔|✔|✔|✔|–|–|✔|
| TAG|✔|–|✔|–|–|✔|✔|–|
| TAG|✔|✔|✔|✔|✔|✔|✔|–|

## Publishing

Expand Down
6 changes: 5 additions & 1 deletion src/Resource/Tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ class Tag extends AbstractResource
'get' => 'tags',
'search' => 'tag_search?term={query}',
'add' => 'tags/add',
'remove' => 'tags/remove'
'remove' => 'tags/remove',
'all' => 'tag_list',
'create' => 'tag_list',
'update' => 'tag_list/{object_id}',
'delete' => 'tag_list/{object_id}',
];

/**
Expand Down