Skip to content

Einführung

Zammad bietet eine leistungsstarke REST-API[1], die alle Operationen ermöglicht, die auch über die Benutzeroberfläche verfügbar sind.

Auf dieser Seite erhalten Sie einen ersten Eindruck von den Dingen, die generell für alle Endpunkte gelten und wie Sie sie anpassen können.

API-Clients

Es sind einige API Clients verfügbar. Bitte beachten Sie, dass diese Clients möglicherweise nicht Zugang zu allen hier aufgeführten Endpunkten bieten.

Authentifizierung

Zammad unterstützt drei verschiedene Authentifizierungsmethoden für seine API.

HTTP-Basisauthentifizierung (Benutzername/Kennwort)

Der Benutzername / das Passwort muss als HTTP Header im HTTP-Aufruf angegeben werden. Diese Authentifizierungsmethode kann deaktiviert werden und ist möglicherweise in Ihrem System nicht verfügbar.

sh
curl -u {username}:{password} https://{fqdn}/{endpoint}

WARNING

Wir raten dringend von der Verwendung der Basisauthentifizierung ab. Verwenden Sie Zugangs-Token, wann immer möglich!

HTTP-Token-Authentifizierung (Zugangs-Token)

Das Zugangs-Token muss als HTTP Header im HTTP-Aufruf angegeben werden. Jeder Benutzer kann in seinen Benutzereinstellungen mehrere Zugangs-Token erstellen. Diese Authentifizierungsmethode kann deaktiviert werden und ist möglicherweise in Ihrem System nicht verfügbar.

sh
curl -H "Authorization: Token token={your_token}" https://{fqdn}/{endpoint}

OAuth2 (Token-Zugang)

Das Token muss als HTTP Header in Ihren Aufrufen angegeben werden. Dies ermöglicht es Anwendungen von Drittanbietern, sich gegenüber Zammad zu authentifizieren.

sh
curl -H "Authorization: Bearer {your_token}" https://{fqdn}/{endpoint}

Endpunkte und Beispieldaten

Der Einfachheit halber werden wir auf den nächsten Seiten keine spezifischen Befehle angeben, sondern stattdessen die mögliche Aufrufmethode (z.B. GET) und den zu verwendenden Endpunkt (z.B. /api/v1/users). Für den Fall, dass Zammad Informationen innerhalb dieser Endpunkt-URLs erwartet, setzen wir sie in geschweifte Klammern wie folgt: /api/v1/users/{user id}

Das Antwortformat ist eine vollständige JSON-Antwort von einer Standardinstanz von Zammad. Bitte denken Sie daran, dass Sie möglicherweise weitere Felder oder allgemeine Informationen sehen, falls Sie Objekte oder andere Informationen hinzugefügt haben.

Inhalts-Typ

Zammad gibt JSON-Payloads zurück, wenn Sie Daten abrufen. Wenn Sie Daten bereitstellen, unabhängig vom allgemeinen Anfragetyp, vergessen Sie nicht, auch den Inhaltstyp application/json anzugeben.

Antwort-Payloads (erweitern)

Zammad gibt immer Informationen einschließlich Hinweisen zu allen Beziehungen zurück. Wenn Sie mehr Informationen benötigen (weil IDs möglicherweise nicht ausreichen), können Sie Ihre Endpunktaufrufe auch mit ?expand=true erweitern.

Dieser Schalter liefert noch mehr Informationen - zumindest benannte Beziehungen zusätzlich zu den ID-Beziehungen. Nachfolgend finden Sie zwei Beispiele, eines für ein Ticket und eines für einen Benutzer:

Details
json
// HTTP-Code 200 OK

{
   "id": 11,
   "organization_id": null,
   "login": "olivia@example.com",
   "firstname": "Olivia",
   "lastname": "Ross",
   "email": "olivia@example.com",
   "image": "b6f7a2d56544bb471eb3a3c238c7d964",
   "image_source": null,
   "web": "",
   "phone": "0044 20 1234 5678",
   "fax": "",
   "mobile": "",
   "department": null,
   "street": "",
   "zip": "",
   "city": "",
   "country": "",
   "address": "Westminster\nLondon SW1A 0AA",
   "vip": false,
   "verified": false,
   "active": true,
   "note": "",
   "last_login": null,
   "source": null,
   "login_failed": 0,
   "out_of_office": false,
   "out_of_office_start_at": null,
   "out_of_office_end_at": null,
   "out_of_office_replacement_id": null,
   "preferences": {},
   "updated_by_id": 1,
   "created_by_id": 1,
   "created_at": "2021-11-03T11:57:17.741Z",
   "updated_at": "2021-11-03T11:57:17.794Z",
   "role_ids": [
      3
   ],
   "organization_ids": [],
   "authorization_ids": [],
   "karma_user_ids": [],
   "group_ids": {}
}

TIP

Bitte beachten Sie, dass Core Workflows den Zugriff auf Attribute oder Werte beschränken können.

Pagination

Da Zammad die Anzahl der zurückgegebenen Objekte aus Leistungsgründen begrenzt, müssen Sie an einigen Stellen eine Paginierung verwenden.

INFO

Anzahl der zurückgegebenen Objekte: Zammad hat eine harte Grenzen für die maximal zurückgegebenen Objekte. Sie können diese Grenzen nicht überschreiten.

Gesamtzahl der zurückzugebenden Objekte: Zammad bietet keine Gesamtanzahl der für Ihre Abfrage verfügbaren Objekte. Dies zwingt Sie dazu, durch die Seiten zu blättern, bis Zammad keine weiteren Objekte mehr zurückgibt.

Um die Paginierung zu verwenden, benötigen Sie zwei get-Optionen: per_page und page. Kombinieren Sie sie, um 5 Ergebnisse von der ersten Ergebnisseite zu erhalten: ?page=1&per_page=5. Erhöhen Sie die Seitenzahl, um mehr Ergebnisse zu erhalten.

Suche per API

Endpunkt Suche

Einige Endpunkte unterstützen eine Suchanfrage. Diese sind:

  • Gruppen <group>
  • Organisationen <organization>
  • Rollen <role>
  • Tickets <ticket>
  • Benutzer <user>

Die folgenden Endpunkte unterstützen ebenfalls eine Suchanfrage, werden aber in dieser Dokumentation nicht explizit behandelt:

  • Chat-Sitzungen
  • Knowledgebase
  • Makros
  • Übersicht
  • Vorlagen
  • Textbaustein

Beispiel für eine Suche

GET-Request gesendet: /api/v1/tickets/search?query=welcome

Show response
json
[
   {
      "id": 1,
      "group_id": 1,
      "priority_id": 2,
      "state_id": 1,
      "organization_id": 1,
      "number": "20001",
      "title": "Welcome to Zammad!",
      "owner_id": 1,
      "customer_id": 2,
      "note": null,
      "first_response_at": null,
      "first_response_escalation_at": null,
      "first_response_in_min": null,
      "first_response_diff_in_min": null,
      "close_at": null,
      "close_escalation_at": null,
      "close_in_min": null,
      "close_diff_in_min": null,
      "update_escalation_at": null,
      "update_in_min": null,
      "update_diff_in_min": null,
      "last_close_at": null,
      "last_contact_at": "2025-01-14T07:45:08.726Z",
      "last_contact_agent_at": null,
      "last_contact_customer_at": "2025-01-14T07:45:08.726Z",
      "last_owner_update_at": null,
      "create_article_type_id": 5,
      "create_article_sender_id": 2,
      "article_count": 1,
      "escalation_at": null,
      "pending_time": null,
      "type": null,
      "time_unit": null,
      "preferences": {},
      "updated_by_id": 2,
      "created_by_id": 2,
      "created_at": "2025-01-14T07:45:08.681Z",
      "updated_at": "2025-01-14T07:45:08.790Z",
      "checklist_id": null,
      "referencing_checklist_ids": [],
      "article_ids": [
         1
      ],
      "ticket_time_accounting_ids": []
   }
]

Expand Parameter

Wenn Sie zusätzliche erweiterte Informationen wünschen, können Sie den Parameter expand verwenden. Mit ihm werden die IDs aufgelöst und zusätzlich Werte/Namen ausgegeben.

GET-Request gesendet: /api/v1/tickets/search?query=welcome&expand=true

Show response
json
[
    {
       "id": 1,
       "group_id": 1,
       "priority_id": 2,
       "state_id": 1,
       "organization_id": 1,
       "number": "20001",
       "title": "Welcome to Zammad!",
       "owner_id": 1,
       "customer_id": 2,
       "note": null,
       "first_response_at": null,
       "first_response_escalation_at": null,
       "first_response_in_min": null,
       "first_response_diff_in_min": null,
       "close_at": null,
       "close_escalation_at": null,
       "close_in_min": null,
       "close_diff_in_min": null,
       "update_escalation_at": null,
       "update_in_min": null,
       "update_diff_in_min": null,
       "last_close_at": null,
       "last_contact_at": "2025-01-14T07:45:08.726Z",
       "last_contact_agent_at": null,
       "last_contact_customer_at": "2025-01-14T07:45:08.726Z",
       "last_owner_update_at": null,
       "create_article_type_id": 5,
       "create_article_sender_id": 2,
       "article_count": 1,
       "escalation_at": null,
       "pending_time": null,
       "type": null,
       "time_unit": null,
       "preferences": {},
       "updated_by_id": 2,
       "created_by_id": 2,
       "created_at": "2025-01-14T07:45:08.681Z",
       "updated_at": "2025-01-14T07:45:08.790Z",
       "checklist_id": null,
       "referencing_checklist_ids": [],
       "article_ids": [
          1
       ],
       "ticket_time_accounting_ids": [],
       "referencing_checklists": [],
       "group": "Users",
       "organization": "Zammad Foundation",
       "ticket_time_accounting": [],
       "state": "new",
       "priority": "2 normal",
       "owner": "-",
       "customer": "nicole.braun@zammad.org",
       "created_by": "nicole.braun@zammad.org",
       "updated_by": "nicole.braun@zammad.org",
       "create_article_type": "phone",
       "create_article_sender": "Customer"
    }
 ]

Full Parameter

Sie können die Antwort sogar noch erweitern, indem Sie den Parameter full verwenden. Seien Sie sich bewusst, dass diese Antwort sehr umfangreich sein kann. Sie gibt alle Assets aus, einschließlich der zugehörigen Attribute und einer total_count genannten Gesamtzahl der Suchergebnisse.

GET-Request gesendet: /api/v1/tickets/search?query=welcome&full=true

Show response
json
{
    "record_ids": [
       1
    ],
    "assets": {
       "Ticket": {
          "1": {
             "id": 1,
             "group_id": 1,
             "priority_id": 2,
             "state_id": 1,
             "organization_id": 1,
             "number": "20001",
             "title": "Welcome to Zammad!",
             "owner_id": 1,
             "customer_id": 2,
             "note": null,
             "first_response_at": null,
             "first_response_escalation_at": null,
             "first_response_in_min": null,
             "first_response_diff_in_min": null,
             "close_at": null,
             "close_escalation_at": null,
             "close_in_min": null,
             "close_diff_in_min": null,
             "update_escalation_at": null,
             "update_in_min": null,
             "update_diff_in_min": null,
             "last_close_at": null,
             "last_contact_at": "2025-01-14T07:45:08.726Z",
             "last_contact_agent_at": null,
             "last_contact_customer_at": "2025-01-14T07:45:08.726Z",
             "last_owner_update_at": null,
             "create_article_type_id": 5,
             "create_article_sender_id": 2,
             "article_count": 1,
             "escalation_at": null,
             "pending_time": null,
             "type": null,
             "time_unit": null,
             "preferences": {},
             "updated_by_id": 2,
             "created_by_id": 2,
             "created_at": "2025-01-14T07:45:08.681Z",
             "updated_at": "2025-01-14T07:45:08.790Z",
             "checklist_id": null,
             "referencing_checklist_ids": [],
             "article_ids": [
                1
             ],
             "ticket_time_accounting_ids": []
          }
       },
       "Group": {
          "1": {
             "id": 1,
             "signature_id": 1,
             "email_address_id": 1,
             "name": "Users",
             "name_last": "Users",
             "parent_id": null,
             "assignment_timeout": null,
             "follow_up_possible": "yes",
             "reopen_time_in_days": null,
             "follow_up_assignment": true,
             "active": true,
             "shared_drafts": true,
             "note": "Standard Group/Pool for Tickets.",
             "updated_by_id": 3,
             "created_by_id": 1,
             "created_at": "2025-01-14T07:45:08.274Z",
             "updated_at": "2025-01-14T07:46:20.513Z",
             "user_ids": [
                3
             ]
          },
          "2": {
             "id": 2,
             "signature_id": null,
             "email_address_id": null,
             "name": "Support",
             "name_last": "Support",
             "parent_id": null,
             "assignment_timeout": null,
             "follow_up_possible": "yes",
             "reopen_time_in_days": null,
             "follow_up_assignment": true,
             "active": true,
             "shared_drafts": true,
             "note": null,
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:20.548Z",
             "updated_at": "2025-01-14T07:46:20.636Z",
             "user_ids": [
                4,
                10,
                3
             ]
          },
          "3": {
             "id": 3,
             "signature_id": null,
             "email_address_id": null,
             "name": "Support::1st Level",
             "name_last": "1st Level",
             "parent_id": 2,
             "assignment_timeout": null,
             "follow_up_possible": "yes",
             "reopen_time_in_days": null,
             "follow_up_assignment": true,
             "active": true,
             "shared_drafts": true,
             "note": null,
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:20.696Z",
             "updated_at": "2025-01-14T07:46:20.895Z",
             "user_ids": [
                7,
                6,
                8,
                4,
                9,
                5,
                10,
                3
             ]
          },
          "4": {
             "id": 4,
             "signature_id": null,
             "email_address_id": null,
             "name": "Support::2nd Level",
             "name_last": "2nd Level",
             "parent_id": 2,
             "assignment_timeout": null,
             "follow_up_possible": "yes",
             "reopen_time_in_days": null,
             "follow_up_assignment": true,
             "active": true,
             "shared_drafts": true,
             "note": null,
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:20.946Z",
             "updated_at": "2025-01-14T07:46:21.085Z",
             "user_ids": [
                7,
                6,
                4,
                5,
                10,
                3
             ]
          },
          "5": {
             "id": 5,
             "signature_id": null,
             "email_address_id": null,
             "name": "Sales",
             "name_last": "Sales",
             "parent_id": null,
             "assignment_timeout": null,
             "follow_up_possible": "yes",
             "reopen_time_in_days": null,
             "follow_up_assignment": true,
             "active": true,
             "shared_drafts": true,
             "note": null,
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:21.149Z",
             "updated_at": "2025-01-14T07:46:21.249Z",
             "user_ids": [
                14,
                13,
                10,
                3
             ]
          },
          "6": {
             "id": 6,
             "signature_id": null,
             "email_address_id": null,
             "name": "Logistics Department",
             "name_last": "Logistics Department",
             "parent_id": null,
             "assignment_timeout": null,
             "follow_up_possible": "yes",
             "reopen_time_in_days": null,
             "follow_up_assignment": true,
             "active": true,
             "shared_drafts": true,
             "note": null,
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:21.307Z",
             "updated_at": "2025-01-14T07:46:21.389Z",
             "user_ids": [
                13,
                10,
                3
             ]
          },
          "7": {
             "id": 7,
             "signature_id": null,
             "email_address_id": null,
             "name": "Logistics Department::Shipping",
             "name_last": "Shipping",
             "parent_id": 6,
             "assignment_timeout": null,
             "follow_up_possible": "yes",
             "reopen_time_in_days": null,
             "follow_up_assignment": true,
             "active": true,
             "shared_drafts": true,
             "note": null,
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:21.447Z",
             "updated_at": "2025-01-14T07:46:21.531Z",
             "user_ids": [
                13,
                10,
                3
             ]
          },
          "8": {
             "id": 8,
             "signature_id": null,
             "email_address_id": null,
             "name": "Logistics Department::Returns Processing",
             "name_last": "Returns Processing",
             "parent_id": 6,
             "assignment_timeout": null,
             "follow_up_possible": "yes",
             "reopen_time_in_days": null,
             "follow_up_assignment": true,
             "active": true,
             "shared_drafts": true,
             "note": null,
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:21.570Z",
             "updated_at": "2025-01-14T07:46:21.633Z",
             "user_ids": [
                13,
                10,
                3
             ]
          },
          "9": {
             "id": 9,
             "signature_id": null,
             "email_address_id": null,
             "name": "IT Internal",
             "name_last": "IT Internal",
             "parent_id": null,
             "assignment_timeout": null,
             "follow_up_possible": "yes",
             "reopen_time_in_days": null,
             "follow_up_assignment": true,
             "active": true,
             "shared_drafts": true,
             "note": null,
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:21.673Z",
             "updated_at": "2025-01-14T07:46:21.761Z",
             "user_ids": [
                11,
                10,
                3
             ]
          },
          "10": {
             "id": 10,
             "signature_id": null,
             "email_address_id": null,
             "name": "IT Internal::Infrastructure",
             "name_last": "Infrastructure",
             "parent_id": 9,
             "assignment_timeout": null,
             "follow_up_possible": "yes",
             "reopen_time_in_days": null,
             "follow_up_assignment": true,
             "active": true,
             "shared_drafts": true,
             "note": null,
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:21.813Z",
             "updated_at": "2025-01-14T07:46:21.881Z",
             "user_ids": [
                11,
                10,
                3
             ]
          },
          "11": {
             "id": 11,
             "signature_id": null,
             "email_address_id": null,
             "name": "IT Internal::IT Support",
             "name_last": "IT Support",
             "parent_id": 9,
             "assignment_timeout": null,
             "follow_up_possible": "yes",
             "reopen_time_in_days": null,
             "follow_up_assignment": true,
             "active": true,
             "shared_drafts": true,
             "note": null,
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:21.932Z",
             "updated_at": "2025-01-14T07:46:21.995Z",
             "user_ids": [
                12,
                10,
                3
             ]
          }
       },
       "User": {
          "1": {
             "id": 1,
             "organization_id": null,
             "login": "-",
             "firstname": "-",
             "lastname": "",
             "email": "",
             "image": null,
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": "",
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": "",
             "vip": false,
             "verified": false,
             "active": false,
             "note": "",
             "last_login": null,
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {},
             "updated_by_id": 1,
             "created_by_id": 1,
             "created_at": "2025-01-14T07:45:07.542Z",
             "updated_at": "2025-01-14T07:45:07.542Z",
             "role_ids": [],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {}
          },
          "3": {
             "id": 3,
             "organization_id": 2,
             "login": "lauren@fastlane.inc",
             "firstname": "Lauren",
             "lastname": "Brooks",
             "email": "lauren@fastlane.inc",
             "image": "775c807d577dbd6bd95569ec1872f338",
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": null,
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": null,
             "vip": false,
             "verified": false,
             "active": true,
             "note": "",
             "last_login": "2025-01-14T07:46:54.082Z",
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {
                "intro": true,
                "keyboard_shortcuts_clues": true,
                "notification_config": {
                   "matrix": {
                      "create": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "update": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "reminder_reached": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "escalation": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      }
                   }
                },
                "locale": "en-us"
             },
             "updated_by_id": 3,
             "created_by_id": 1,
             "created_at": "2025-01-14T07:46:17.855Z",
             "updated_at": "2025-01-14T07:46:58.108Z",
             "role_ids": [
                2,
                1
             ],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {
                "1": [
                   "full"
                ],
                "2": [
                   "full"
                ],
                "3": [
                   "full"
                ],
                "4": [
                   "full"
                ],
                "5": [
                   "full"
                ],
                "6": [
                   "full"
                ],
                "7": [
                   "full"
                ],
                "8": [
                   "full"
                ],
                "9": [
                   "full"
                ],
                "10": [
                   "full"
                ],
                "11": [
                   "full"
                ]
             }
          },
          "4": {
             "id": 4,
             "organization_id": 2,
             "login": "ethan@fastlane.inc",
             "firstname": "Ethan",
             "lastname": "Kwan",
             "email": "ethan@fastlane.inc",
             "image": "3c3a37e93647e40c595937e336953de8",
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": null,
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": null,
             "vip": false,
             "verified": false,
             "active": true,
             "note": "",
             "last_login": null,
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {
                "intro": true,
                "keyboard_shortcuts_clues": true,
                "notification_config": {
                   "matrix": {
                      "create": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "update": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "reminder_reached": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "escalation": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      }
                   }
                }
             },
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:18.901Z",
             "updated_at": "2025-01-14T07:46:26.067Z",
             "role_ids": [
                2
             ],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {
                "2": [
                   "full"
                ],
                "3": [
                   "full"
                ],
                "4": [
                   "full"
                ]
             }
          },
          "5": {
             "id": 5,
             "organization_id": 2,
             "login": "julian@fastlane.inc",
             "firstname": "Julian",
             "lastname": "Reyes",
             "email": "julian@fastlane.inc",
             "image": "5ead44f8048cd52d94198bbb7aa1c0cc",
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": null,
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": null,
             "vip": false,
             "verified": false,
             "active": true,
             "note": "",
             "last_login": null,
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {
                "intro": true,
                "keyboard_shortcuts_clues": true,
                "notification_config": {
                   "matrix": {
                      "create": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "update": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "reminder_reached": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "escalation": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      }
                   }
                }
             },
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:19.051Z",
             "updated_at": "2025-01-14T07:46:26.113Z",
             "role_ids": [
                2
             ],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {
                "3": [
                   "full"
                ],
                "4": [
                   "full"
                ]
             }
          },
          "6": {
             "id": 6,
             "organization_id": 2,
             "login": "thomas@fastlane.inc",
             "firstname": "Thomas",
             "lastname": "Lee",
             "email": "thomas@fastlane.inc",
             "image": "32340889dbe9bc093f9304d1f708ca6f",
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": null,
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": null,
             "vip": false,
             "verified": false,
             "active": true,
             "note": "",
             "last_login": null,
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {
                "intro": true,
                "keyboard_shortcuts_clues": true,
                "notification_config": {
                   "matrix": {
                      "create": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "update": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "reminder_reached": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "escalation": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      }
                   }
                }
             },
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:19.161Z",
             "updated_at": "2025-01-14T07:46:26.156Z",
             "role_ids": [
                2
             ],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {
                "3": [
                   "full"
                ],
                "4": [
                   "full"
                ]
             }
          },
          "7": {
             "id": 7,
             "organization_id": 2,
             "login": "liam@fastlane.inc",
             "firstname": "Liam",
             "lastname": "Chen",
             "email": "liam@fastlane.inc",
             "image": "548f5e2072493a829319359384ba3c49",
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": null,
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": null,
             "vip": false,
             "verified": false,
             "active": true,
             "note": "",
             "last_login": null,
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {
                "intro": true,
                "keyboard_shortcuts_clues": true,
                "notification_config": {
                   "matrix": {
                      "create": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "update": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "reminder_reached": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "escalation": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      }
                   }
                }
             },
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:19.288Z",
             "updated_at": "2025-01-14T07:46:26.202Z",
             "role_ids": [
                2
             ],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {
                "3": [
                   "full"
                ],
                "4": [
                   "full"
                ]
             }
          },
          "8": {
             "id": 8,
             "organization_id": 2,
             "login": "alex@fastlane.inc",
             "firstname": "Alexander",
             "lastname": "Jensen",
             "email": "alex@fastlane.inc",
             "image": "8e837e5b08ef314f920f13e6b8e44b3f",
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": null,
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": null,
             "vip": false,
             "verified": false,
             "active": true,
             "note": "",
             "last_login": null,
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {
                "intro": true,
                "keyboard_shortcuts_clues": true,
                "notification_config": {
                   "matrix": {
                      "create": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "update": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "reminder_reached": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "escalation": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      }
                   }
                }
             },
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:19.401Z",
             "updated_at": "2025-01-14T07:46:26.245Z",
             "role_ids": [
                2
             ],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {
                "3": [
                   "full"
                ]
             }
          },
          "9": {
             "id": 9,
             "organization_id": 2,
             "login": "emily@fastlane.inc",
             "firstname": "Emily",
             "lastname": "Wilson",
             "email": "emily@fastlane.inc",
             "image": "f527a90b9dc0c731005f5756bbd5a432",
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": null,
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": null,
             "vip": false,
             "verified": false,
             "active": true,
             "note": "",
             "last_login": null,
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {
                "intro": true,
                "keyboard_shortcuts_clues": true,
                "notification_config": {
                   "matrix": {
                      "create": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "update": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "reminder_reached": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "escalation": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      }
                   }
                }
             },
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:19.514Z",
             "updated_at": "2025-01-14T07:46:26.301Z",
             "role_ids": [
                2
             ],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {
                "3": [
                   "full"
                ]
             }
          },
          "10": {
             "id": 10,
             "organization_id": 2,
             "login": "hannah@fastlane.inc",
             "firstname": "Hannah",
             "lastname": "Taylor",
             "email": "hannah@fastlane.inc",
             "image": "7b590e70915e7c33fff328f7e8fa0bb9",
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": null,
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": null,
             "vip": false,
             "verified": false,
             "active": true,
             "note": "",
             "last_login": null,
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {
                "intro": true,
                "keyboard_shortcuts_clues": true,
                "notification_config": {
                   "matrix": {
                      "create": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "update": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "reminder_reached": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "escalation": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      }
                   }
                }
             },
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:19.638Z",
             "updated_at": "2025-01-14T07:46:26.406Z",
             "role_ids": [
                2,
                1
             ],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {
                "2": [
                   "full"
                ],
                "3": [
                   "full"
                ],
                "4": [
                   "full"
                ],
                "5": [
                   "full"
                ],
                "6": [
                   "full"
                ],
                "7": [
                   "full"
                ],
                "8": [
                   "full"
                ],
                "9": [
                   "full"
                ],
                "10": [
                   "full"
                ],
                "11": [
                   "full"
                ]
             }
          },
          "11": {
             "id": 11,
             "organization_id": 2,
             "login": "jackson@fastlane.inc",
             "firstname": "Jackson",
             "lastname": "Lee",
             "email": "jackson@fastlane.inc",
             "image": "f60bee881cf1856275d4f770ab9f6063",
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": null,
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": null,
             "vip": false,
             "verified": false,
             "active": true,
             "note": "",
             "last_login": null,
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {
                "intro": true,
                "keyboard_shortcuts_clues": true,
                "notification_config": {
                   "matrix": {
                      "create": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "update": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "reminder_reached": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "escalation": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      }
                   }
                }
             },
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:19.779Z",
             "updated_at": "2025-01-14T07:46:26.451Z",
             "role_ids": [
                2,
                1
             ],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {
                "9": [
                   "full"
                ],
                "10": [
                   "full"
                ]
             }
          },
          "12": {
             "id": 12,
             "organization_id": 2,
             "login": "emily.t@fastlane.inc",
             "firstname": "Emily",
             "lastname": "Tran",
             "email": "emily.t@fastlane.inc",
             "image": "c9a8e23fe76079f0d249c87bcd145f95",
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": null,
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": null,
             "vip": false,
             "verified": false,
             "active": true,
             "note": "",
             "last_login": null,
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {
                "intro": true,
                "keyboard_shortcuts_clues": true,
                "notification_config": {
                   "matrix": {
                      "create": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "update": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": true,
                            "subscribed": true,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "reminder_reached": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      },
                      "escalation": {
                         "criteria": {
                            "owned_by_me": true,
                            "owned_by_nobody": false,
                            "subscribed": false,
                            "no": false
                         },
                         "channel": {
                            "email": true,
                            "online": true
                         }
                      }
                   }
                }
             },
             "updated_by_id": 3,
             "created_by_id": 3,
             "created_at": "2025-01-14T07:46:19.893Z",
             "updated_at": "2025-01-14T07:46:26.493Z",
             "role_ids": [
                2,
                1
             ],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {
                "11": [
                   "full"
                ]
             }
          },
          "2": {
             "id": 2,
             "organization_id": 1,
             "login": "nicole.braun@zammad.org",
             "firstname": "Nicole",
             "lastname": "Braun",
             "email": "nicole.braun@zammad.org",
             "image": null,
             "image_source": null,
             "web": "",
             "phone": "",
             "fax": "",
             "mobile": "",
             "department": "",
             "street": "",
             "zip": "",
             "city": "",
             "country": "",
             "address": "",
             "vip": false,
             "verified": false,
             "active": true,
             "note": "",
             "last_login": null,
             "source": null,
             "login_failed": 0,
             "out_of_office": false,
             "out_of_office_start_at": null,
             "out_of_office_end_at": null,
             "out_of_office_replacement_id": null,
             "preferences": {
                "tickets_closed": 0,
                "tickets_open": 1
             },
             "updated_by_id": 2,
             "created_by_id": 1,
             "created_at": "2025-01-14T07:45:08.641Z",
             "updated_at": "2025-01-14T07:45:20.373Z",
             "role_ids": [
                3
             ],
             "two_factor_preference_ids": [],
             "organization_ids": [],
             "authorization_ids": [],
             "overview_sorting_ids": [],
             "group_ids": {}
          }
       },
       "Role": {
          "2": {
             "id": 2,
             "name": "Agent",
             "preferences": {},
             "default_at_signup": false,
             "active": true,
             "note": "To work on Tickets.",
             "updated_by_id": 3,
             "created_by_id": 1,
             "created_at": "2025-01-14T07:45:07.649Z",
             "updated_at": "2025-01-14T07:46:18.906Z",
             "permission_ids": [
                53,
                55,
                58,
                61,
                63
             ],
             "knowledge_base_permission_ids": [],
             "group_ids": {}
          },
          "1": {
             "id": 1,
             "name": "Admin",
             "preferences": {},
             "default_at_signup": false,
             "active": true,
             "note": "To configure your system.",
             "updated_by_id": 3,
             "created_by_id": 1,
             "created_at": "2025-01-14T07:45:07.630Z",
             "updated_at": "2025-01-14T07:46:19.646Z",
             "permission_ids": [
                1,
                57,
                59,
                63
             ],
             "knowledge_base_permission_ids": [],
             "group_ids": {}
          },
          "3": {
             "id": 3,
             "name": "Customer",
             "preferences": {},
             "default_at_signup": true,
             "active": true,
             "note": "People who create Tickets ask for help.",
             "updated_by_id": 3,
             "created_by_id": 1,
             "created_at": "2025-01-14T07:45:07.659Z",
             "updated_at": "2025-01-14T07:46:20.165Z",
             "permission_ids": [
                62,
                64,
                65,
                66,
                68,
                69,
                72
             ],
             "knowledge_base_permission_ids": [],
             "group_ids": {}
          }
       },
       "Organization": {
          "2": {
             "id": 2,
             "name": "Fast Lane Hardware",
             "shared": true,
             "domain": "",
             "domain_assignment": false,
             "active": true,
             "vip": false,
             "note": "IT hardware and custom PC builds",
             "updated_by_id": 1,
             "created_by_id": 1,
             "created_at": "2025-01-14T07:46:17.574Z",
             "updated_at": "2025-01-14T07:46:17.574Z",
             "member_ids": [
                3,
                4,
                5,
                6,
                7,
                8,
                9,
                10,
                11,
                12,
                13,
                14
             ],
             "secondary_member_ids": []
          },
          "1": {
             "id": 1,
             "name": "Zammad Foundation",
             "shared": true,
             "domain": "",
             "domain_assignment": false,
             "active": true,
             "vip": false,
             "note": "",
             "updated_by_id": 1,
             "created_by_id": 1,
             "created_at": "2025-01-14T07:45:08.597Z",
             "updated_at": "2025-01-14T07:45:08.699Z",
             "member_ids": [
                2
             ],
             "secondary_member_ids": []
          }
       }
    },
    "total_count": 1
 }

Only Total Count Parameter

Mit dem Parameter only_total_count wird nur die Anzahl der Suchergebnisse ausgegeben.

GET-Request gesendet: /api/v1/tickets/search?query=welcome&only_total_count=true

Show response
json
{
   "total_count": 1
}

Globale Suche

Wenn Sie nicht nur in einem bestimmten Objekttyp suchen möchten, können Sie dies mit der globalen Suche ohne Angabe eines Objekts tun. Die Antwort kann Benutzer, Tickets, Organisationen, Knowledgebase-Artikel und -Antworten sowie Chats umfassen, je nach System und Inhalt. Diese globale Suche verhält sich wie die Suche in Zammads UI in der linken Taskleiste. Die verfügbaren Parameter unterscheiden sich von denen der Endpunktsuche.

GET-Request gesendet: /api/v1/search?query=welcome

Show response
json
{
   "assets": {
      "Ticket": {
         "1": {
            "id": 1,
            "group_id": 1,
            "priority_id": 2,
            "state_id": 1,
            "organization_id": 1,
            "number": "20001",
            "title": "Welcome to Zammad!",
            "owner_id": 1,
            "customer_id": 2,
            "note": null,
            "first_response_at": null,
            "first_response_escalation_at": null,
            "first_response_in_min": null,
            "first_response_diff_in_min": null,
            "close_at": null,
            "close_escalation_at": null,
            "close_in_min": null,
            "close_diff_in_min": null,
            "update_escalation_at": null,
            "update_in_min": null,
            "update_diff_in_min": null,
            "last_close_at": null,
            "last_contact_at": "2025-01-14T07:45:08.726Z",
            "last_contact_agent_at": null,
            "last_contact_customer_at": "2025-01-14T07:45:08.726Z",
            "last_owner_update_at": null,
            "create_article_type_id": 5,
            "create_article_sender_id": 2,
            "article_count": 1,
            "escalation_at": null,
            "pending_time": null,
            "type": null,
            "time_unit": null,
            "preferences": {},
            "updated_by_id": 2,
            "created_by_id": 2,
            "created_at": "2025-01-14T07:45:08.681Z",
            "updated_at": "2025-01-14T07:45:08.790Z",
            "checklist_id": null,
            "referencing_checklist_ids": [],
            "article_ids": [
               1
            ],
            "ticket_time_accounting_ids": []
         }
      },
      "Group": {
         "1": {
            "id": 1,
            "signature_id": 1,
            "email_address_id": 1,
            "name": "Users",
            "name_last": "Users",
            "parent_id": null,
            "assignment_timeout": null,
            "follow_up_possible": "yes",
            "reopen_time_in_days": null,
            "follow_up_assignment": true,
            "active": true,
            "shared_drafts": true,
            "note": "Standard Group/Pool for Tickets.",
            "updated_by_id": 3,
            "created_by_id": 1,
            "created_at": "2025-01-14T07:45:08.274Z",
            "updated_at": "2025-01-14T07:46:20.513Z",
            "user_ids": [
               3
            ]
         },
         "2": {
            "id": 2,
            "signature_id": null,
            "email_address_id": null,
            "name": "Support",
            "name_last": "Support",
            "parent_id": null,
            "assignment_timeout": null,
            "follow_up_possible": "yes",
            "reopen_time_in_days": null,
            "follow_up_assignment": true,
            "active": true,
            "shared_drafts": true,
            "note": null,
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:20.548Z",
            "updated_at": "2025-01-14T07:46:20.636Z",
            "user_ids": [
               4,
               10,
               3
            ]
         },
         "3": {
            "id": 3,
            "signature_id": null,
            "email_address_id": null,
            "name": "Support::1st Level",
            "name_last": "1st Level",
            "parent_id": 2,
            "assignment_timeout": null,
            "follow_up_possible": "yes",
            "reopen_time_in_days": null,
            "follow_up_assignment": true,
            "active": true,
            "shared_drafts": true,
            "note": null,
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:20.696Z",
            "updated_at": "2025-01-14T07:46:20.895Z",
            "user_ids": [
               7,
               6,
               8,
               4,
               9,
               5,
               10,
               3
            ]
         },
         "4": {
            "id": 4,
            "signature_id": null,
            "email_address_id": null,
            "name": "Support::2nd Level",
            "name_last": "2nd Level",
            "parent_id": 2,
            "assignment_timeout": null,
            "follow_up_possible": "yes",
            "reopen_time_in_days": null,
            "follow_up_assignment": true,
            "active": true,
            "shared_drafts": true,
            "note": null,
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:20.946Z",
            "updated_at": "2025-01-14T07:46:21.085Z",
            "user_ids": [
               7,
               6,
               4,
               5,
               10,
               3
            ]
         },
         "5": {
            "id": 5,
            "signature_id": null,
            "email_address_id": null,
            "name": "Sales",
            "name_last": "Sales",
            "parent_id": null,
            "assignment_timeout": null,
            "follow_up_possible": "yes",
            "reopen_time_in_days": null,
            "follow_up_assignment": true,
            "active": true,
            "shared_drafts": true,
            "note": null,
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:21.149Z",
            "updated_at": "2025-01-14T07:46:21.249Z",
            "user_ids": [
               14,
               13,
               10,
               3
            ]
         },
         "6": {
            "id": 6,
            "signature_id": null,
            "email_address_id": null,
            "name": "Logistics Department",
            "name_last": "Logistics Department",
            "parent_id": null,
            "assignment_timeout": null,
            "follow_up_possible": "yes",
            "reopen_time_in_days": null,
            "follow_up_assignment": true,
            "active": true,
            "shared_drafts": true,
            "note": null,
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:21.307Z",
            "updated_at": "2025-01-14T07:46:21.389Z",
            "user_ids": [
               13,
               10,
               3
            ]
         },
         "7": {
            "id": 7,
            "signature_id": null,
            "email_address_id": null,
            "name": "Logistics Department::Shipping",
            "name_last": "Shipping",
            "parent_id": 6,
            "assignment_timeout": null,
            "follow_up_possible": "yes",
            "reopen_time_in_days": null,
            "follow_up_assignment": true,
            "active": true,
            "shared_drafts": true,
            "note": null,
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:21.447Z",
            "updated_at": "2025-01-14T07:46:21.531Z",
            "user_ids": [
               13,
               10,
               3
            ]
         },
         "8": {
            "id": 8,
            "signature_id": null,
            "email_address_id": null,
            "name": "Logistics Department::Returns Processing",
            "name_last": "Returns Processing",
            "parent_id": 6,
            "assignment_timeout": null,
            "follow_up_possible": "yes",
            "reopen_time_in_days": null,
            "follow_up_assignment": true,
            "active": true,
            "shared_drafts": true,
            "note": null,
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:21.570Z",
            "updated_at": "2025-01-14T07:46:21.633Z",
            "user_ids": [
               13,
               10,
               3
            ]
         },
         "9": {
            "id": 9,
            "signature_id": null,
            "email_address_id": null,
            "name": "IT Internal",
            "name_last": "IT Internal",
            "parent_id": null,
            "assignment_timeout": null,
            "follow_up_possible": "yes",
            "reopen_time_in_days": null,
            "follow_up_assignment": true,
            "active": true,
            "shared_drafts": true,
            "note": null,
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:21.673Z",
            "updated_at": "2025-01-14T07:46:21.761Z",
            "user_ids": [
               11,
               10,
               3
            ]
         },
         "10": {
            "id": 10,
            "signature_id": null,
            "email_address_id": null,
            "name": "IT Internal::Infrastructure",
            "name_last": "Infrastructure",
            "parent_id": 9,
            "assignment_timeout": null,
            "follow_up_possible": "yes",
            "reopen_time_in_days": null,
            "follow_up_assignment": true,
            "active": true,
            "shared_drafts": true,
            "note": null,
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:21.813Z",
            "updated_at": "2025-01-14T07:46:21.881Z",
            "user_ids": [
               11,
               10,
               3
            ]
         },
         "11": {
            "id": 11,
            "signature_id": null,
            "email_address_id": null,
            "name": "IT Internal::IT Support",
            "name_last": "IT Support",
            "parent_id": 9,
            "assignment_timeout": null,
            "follow_up_possible": "yes",
            "reopen_time_in_days": null,
            "follow_up_assignment": true,
            "active": true,
            "shared_drafts": true,
            "note": null,
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:21.932Z",
            "updated_at": "2025-01-14T07:46:21.995Z",
            "user_ids": [
               12,
               10,
               3
            ]
         }
      },
      "User": {
         "1": {
            "id": 1,
            "organization_id": null,
            "login": "-",
            "firstname": "-",
            "lastname": "",
            "email": "",
            "image": null,
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": "",
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": "",
            "vip": false,
            "verified": false,
            "active": false,
            "note": "",
            "last_login": null,
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {},
            "updated_by_id": 1,
            "created_by_id": 1,
            "created_at": "2025-01-14T07:45:07.542Z",
            "updated_at": "2025-01-14T07:45:07.542Z",
            "role_ids": [],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {}
         },
         "3": {
            "id": 3,
            "organization_id": 2,
            "login": "lauren@fastlane.inc",
            "firstname": "Lauren",
            "lastname": "Brooks",
            "email": "lauren@fastlane.inc",
            "image": "775c807d577dbd6bd95569ec1872f338",
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": null,
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": null,
            "vip": false,
            "verified": false,
            "active": true,
            "note": "",
            "last_login": "2025-01-14T07:46:54.082Z",
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {
               "intro": true,
               "keyboard_shortcuts_clues": true,
               "notification_config": {
                  "matrix": {
                     "create": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "update": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "reminder_reached": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "escalation": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     }
                  }
               },
               "locale": "en-us"
            },
            "updated_by_id": 3,
            "created_by_id": 1,
            "created_at": "2025-01-14T07:46:17.855Z",
            "updated_at": "2025-01-14T07:46:58.108Z",
            "role_ids": [
               2,
               1
            ],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {
               "1": [
                  "full"
               ],
               "2": [
                  "full"
               ],
               "3": [
                  "full"
               ],
               "4": [
                  "full"
               ],
               "5": [
                  "full"
               ],
               "6": [
                  "full"
               ],
               "7": [
                  "full"
               ],
               "8": [
                  "full"
               ],
               "9": [
                  "full"
               ],
               "10": [
                  "full"
               ],
               "11": [
                  "full"
               ]
            }
         },
         "4": {
            "id": 4,
            "organization_id": 2,
            "login": "ethan@fastlane.inc",
            "firstname": "Ethan",
            "lastname": "Kwan",
            "email": "ethan@fastlane.inc",
            "image": "3c3a37e93647e40c595937e336953de8",
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": null,
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": null,
            "vip": false,
            "verified": false,
            "active": true,
            "note": "",
            "last_login": null,
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {
               "intro": true,
               "keyboard_shortcuts_clues": true,
               "notification_config": {
                  "matrix": {
                     "create": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "update": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "reminder_reached": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "escalation": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     }
                  }
               }
            },
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:18.901Z",
            "updated_at": "2025-01-14T07:46:26.067Z",
            "role_ids": [
               2
            ],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {
               "2": [
                  "full"
               ],
               "3": [
                  "full"
               ],
               "4": [
                  "full"
               ]
            }
         },
         "5": {
            "id": 5,
            "organization_id": 2,
            "login": "julian@fastlane.inc",
            "firstname": "Julian",
            "lastname": "Reyes",
            "email": "julian@fastlane.inc",
            "image": "5ead44f8048cd52d94198bbb7aa1c0cc",
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": null,
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": null,
            "vip": false,
            "verified": false,
            "active": true,
            "note": "",
            "last_login": null,
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {
               "intro": true,
               "keyboard_shortcuts_clues": true,
               "notification_config": {
                  "matrix": {
                     "create": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "update": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "reminder_reached": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "escalation": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     }
                  }
               }
            },
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:19.051Z",
            "updated_at": "2025-01-14T07:46:26.113Z",
            "role_ids": [
               2
            ],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {
               "3": [
                  "full"
               ],
               "4": [
                  "full"
               ]
            }
         },
         "6": {
            "id": 6,
            "organization_id": 2,
            "login": "thomas@fastlane.inc",
            "firstname": "Thomas",
            "lastname": "Lee",
            "email": "thomas@fastlane.inc",
            "image": "32340889dbe9bc093f9304d1f708ca6f",
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": null,
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": null,
            "vip": false,
            "verified": false,
            "active": true,
            "note": "",
            "last_login": null,
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {
               "intro": true,
               "keyboard_shortcuts_clues": true,
               "notification_config": {
                  "matrix": {
                     "create": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "update": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "reminder_reached": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "escalation": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     }
                  }
               }
            },
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:19.161Z",
            "updated_at": "2025-01-14T07:46:26.156Z",
            "role_ids": [
               2
            ],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {
               "3": [
                  "full"
               ],
               "4": [
                  "full"
               ]
            }
         },
         "7": {
            "id": 7,
            "organization_id": 2,
            "login": "liam@fastlane.inc",
            "firstname": "Liam",
            "lastname": "Chen",
            "email": "liam@fastlane.inc",
            "image": "548f5e2072493a829319359384ba3c49",
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": null,
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": null,
            "vip": false,
            "verified": false,
            "active": true,
            "note": "",
            "last_login": null,
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {
               "intro": true,
               "keyboard_shortcuts_clues": true,
               "notification_config": {
                  "matrix": {
                     "create": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "update": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "reminder_reached": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "escalation": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     }
                  }
               }
            },
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:19.288Z",
            "updated_at": "2025-01-14T07:46:26.202Z",
            "role_ids": [
               2
            ],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {
               "3": [
                  "full"
               ],
               "4": [
                  "full"
               ]
            }
         },
         "8": {
            "id": 8,
            "organization_id": 2,
            "login": "alex@fastlane.inc",
            "firstname": "Alexander",
            "lastname": "Jensen",
            "email": "alex@fastlane.inc",
            "image": "8e837e5b08ef314f920f13e6b8e44b3f",
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": null,
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": null,
            "vip": false,
            "verified": false,
            "active": true,
            "note": "",
            "last_login": null,
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {
               "intro": true,
               "keyboard_shortcuts_clues": true,
               "notification_config": {
                  "matrix": {
                     "create": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "update": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "reminder_reached": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "escalation": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     }
                  }
               }
            },
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:19.401Z",
            "updated_at": "2025-01-14T07:46:26.245Z",
            "role_ids": [
               2
            ],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {
               "3": [
                  "full"
               ]
            }
         },
         "9": {
            "id": 9,
            "organization_id": 2,
            "login": "emily@fastlane.inc",
            "firstname": "Emily",
            "lastname": "Wilson",
            "email": "emily@fastlane.inc",
            "image": "f527a90b9dc0c731005f5756bbd5a432",
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": null,
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": null,
            "vip": false,
            "verified": false,
            "active": true,
            "note": "",
            "last_login": null,
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {
               "intro": true,
               "keyboard_shortcuts_clues": true,
               "notification_config": {
                  "matrix": {
                     "create": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "update": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "reminder_reached": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "escalation": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     }
                  }
               }
            },
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:19.514Z",
            "updated_at": "2025-01-14T07:46:26.301Z",
            "role_ids": [
               2
            ],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {
               "3": [
                  "full"
               ]
            }
         },
         "10": {
            "id": 10,
            "organization_id": 2,
            "login": "hannah@fastlane.inc",
            "firstname": "Hannah",
            "lastname": "Taylor",
            "email": "hannah@fastlane.inc",
            "image": "7b590e70915e7c33fff328f7e8fa0bb9",
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": null,
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": null,
            "vip": false,
            "verified": false,
            "active": true,
            "note": "",
            "last_login": null,
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {
               "intro": true,
               "keyboard_shortcuts_clues": true,
               "notification_config": {
                  "matrix": {
                     "create": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "update": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "reminder_reached": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "escalation": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     }
                  }
               }
            },
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:19.638Z",
            "updated_at": "2025-01-14T07:46:26.406Z",
            "role_ids": [
               2,
               1
            ],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {
               "2": [
                  "full"
               ],
               "3": [
                  "full"
               ],
               "4": [
                  "full"
               ],
               "5": [
                  "full"
               ],
               "6": [
                  "full"
               ],
               "7": [
                  "full"
               ],
               "8": [
                  "full"
               ],
               "9": [
                  "full"
               ],
               "10": [
                  "full"
               ],
               "11": [
                  "full"
               ]
            }
         },
         "11": {
            "id": 11,
            "organization_id": 2,
            "login": "jackson@fastlane.inc",
            "firstname": "Jackson",
            "lastname": "Lee",
            "email": "jackson@fastlane.inc",
            "image": "f60bee881cf1856275d4f770ab9f6063",
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": null,
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": null,
            "vip": false,
            "verified": false,
            "active": true,
            "note": "",
            "last_login": null,
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {
               "intro": true,
               "keyboard_shortcuts_clues": true,
               "notification_config": {
                  "matrix": {
                     "create": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "update": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "reminder_reached": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "escalation": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     }
                  }
               }
            },
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:19.779Z",
            "updated_at": "2025-01-14T07:46:26.451Z",
            "role_ids": [
               2,
               1
            ],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {
               "9": [
                  "full"
               ],
               "10": [
                  "full"
               ]
            }
         },
         "12": {
            "id": 12,
            "organization_id": 2,
            "login": "emily.t@fastlane.inc",
            "firstname": "Emily",
            "lastname": "Tran",
            "email": "emily.t@fastlane.inc",
            "image": "c9a8e23fe76079f0d249c87bcd145f95",
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": null,
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": null,
            "vip": false,
            "verified": false,
            "active": true,
            "note": "",
            "last_login": null,
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {
               "intro": true,
               "keyboard_shortcuts_clues": true,
               "notification_config": {
                  "matrix": {
                     "create": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "update": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": true,
                           "subscribed": true,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "reminder_reached": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     },
                     "escalation": {
                        "criteria": {
                           "owned_by_me": true,
                           "owned_by_nobody": false,
                           "subscribed": false,
                           "no": false
                        },
                        "channel": {
                           "email": true,
                           "online": true
                        }
                     }
                  }
               }
            },
            "updated_by_id": 3,
            "created_by_id": 3,
            "created_at": "2025-01-14T07:46:19.893Z",
            "updated_at": "2025-01-14T07:46:26.493Z",
            "role_ids": [
               2,
               1
            ],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {
               "11": [
                  "full"
               ]
            }
         },
         "2": {
            "id": 2,
            "organization_id": 1,
            "login": "nicole.braun@zammad.org",
            "firstname": "Nicole",
            "lastname": "Braun",
            "email": "nicole.braun@zammad.org",
            "image": null,
            "image_source": null,
            "web": "",
            "phone": "",
            "fax": "",
            "mobile": "",
            "department": "",
            "street": "",
            "zip": "",
            "city": "",
            "country": "",
            "address": "",
            "vip": false,
            "verified": false,
            "active": true,
            "note": "",
            "last_login": null,
            "source": null,
            "login_failed": 0,
            "out_of_office": false,
            "out_of_office_start_at": null,
            "out_of_office_end_at": null,
            "out_of_office_replacement_id": null,
            "preferences": {
               "tickets_closed": 0,
               "tickets_open": 1
            },
            "updated_by_id": 2,
            "created_by_id": 1,
            "created_at": "2025-01-14T07:45:08.641Z",
            "updated_at": "2025-01-14T07:45:20.373Z",
            "role_ids": [
               3
            ],
            "two_factor_preference_ids": [],
            "organization_ids": [],
            "authorization_ids": [],
            "overview_sorting_ids": [],
            "group_ids": {}
         }
      },
      "Role": {
         "2": {
            "id": 2,
            "name": "Agent",
            "preferences": {},
            "default_at_signup": false,
            "active": true,
            "note": "To work on Tickets.",
            "updated_by_id": 3,
            "created_by_id": 1,
            "created_at": "2025-01-14T07:45:07.649Z",
            "updated_at": "2025-01-14T07:46:18.906Z",
            "permission_ids": [
               53,
               55,
               58,
               61,
               63
            ],
            "knowledge_base_permission_ids": [],
            "group_ids": {}
         },
         "1": {
            "id": 1,
            "name": "Admin",
            "preferences": {},
            "default_at_signup": false,
            "active": true,
            "note": "To configure your system.",
            "updated_by_id": 3,
            "created_by_id": 1,
            "created_at": "2025-01-14T07:45:07.630Z",
            "updated_at": "2025-01-14T07:46:19.646Z",
            "permission_ids": [
               1,
               57,
               59,
               63
            ],
            "knowledge_base_permission_ids": [],
            "group_ids": {}
         },
         "3": {
            "id": 3,
            "name": "Customer",
            "preferences": {},
            "default_at_signup": true,
            "active": true,
            "note": "People who create Tickets ask for help.",
            "updated_by_id": 3,
            "created_by_id": 1,
            "created_at": "2025-01-14T07:45:07.659Z",
            "updated_at": "2025-01-14T07:46:20.165Z",
            "permission_ids": [
               62,
               64,
               65,
               66,
               68,
               69,
               72
            ],
            "knowledge_base_permission_ids": [],
            "group_ids": {}
         }
      },
      "Organization": {
         "2": {
            "id": 2,
            "name": "Fast Lane Hardware",
            "shared": true,
            "domain": "",
            "domain_assignment": false,
            "active": true,
            "vip": false,
            "note": "IT hardware and custom PC builds",
            "updated_by_id": 1,
            "created_by_id": 1,
            "created_at": "2025-01-14T07:46:17.574Z",
            "updated_at": "2025-01-14T07:46:17.574Z",
            "member_ids": [
               3,
               4,
               5,
               6,
               7,
               8,
               9,
               10,
               11,
               12,
               13,
               14
            ],
            "secondary_member_ids": []
         },
         "1": {
            "id": 1,
            "name": "Zammad Foundation",
            "shared": true,
            "domain": "",
            "domain_assignment": false,
            "active": true,
            "vip": false,
            "note": "",
            "updated_by_id": 1,
            "created_by_id": 1,
            "created_at": "2025-01-14T07:45:08.597Z",
            "updated_at": "2025-01-14T07:45:08.699Z",
            "member_ids": [
               2
            ],
            "secondary_member_ids": []
         }
      }
   },
   "result": [
      {
         "type": "Ticket",
         "id": 1
      }
   ]
}

Bedingungsabhängige Suche

Sie können sogar Bedingungen wie in Triggern und Automatisierungen verwenden, um über die API zu suchen. Wenn Sie solche Bedingungen nicht manuell erstellen möchten, finden Sie unten einen Hinweis, wie Sie schnell eine Bedingungsstruktur über die Benutzeroberfläche erstellen und für Ihre API-Anfrage abrufen können.

Wie kann ich also eine solche bedingungsabhängige Anfrage erstellen?

  • Rufen Sie in Zammad die Verwaltungsoberfläche auf und erstellen Sie eine Bedingung, z.B. indem Sie eine neue Übersicht oder einen neuen Trigger erstellen. Die erstellte Logik kann inaktiv sein, damit keine unerwünschte Aktion oder Änderung ausgeführt wird.
  • Rufen Sie die Rails-Konsole </admin/console> auf, indem Sie entweder rails c / zammad run rails c verwenden oder den Präfix rails r / zammad run rails r vor den unten stehenden Befehlen hinzufügen, abhängig von Ihrem Setup.
  • Suchen Sie nach der erstellten Bedingung, passen Sie die folgenden Beispiele an Ihr Szenario an:
ruby
puts Overview.find_by(name: 'My test overview').attributes.slice('condition').to_json
ruby
puts Trigger.find_by(name: 'My new test trigger').attributes.slice('condition').to_json

Dies führt zu einer Ausgabe wie der folgenden:

Show output
json
{"condition":{"ticket.state_id":{"operator":"is","value":["2"]},"ticket.title":{"operator":"contains","value":"Test"}}}

Verwenden Sie dies als Payload in Ihrem POST-Request in einer Endpunktsuche. Die Antwort enthält die gleichen Objekte wie der Trigger oder die Übersicht, die Sie erstellt haben.

Sortierung der Suchergebnisse

Zammad ermöglicht es Ihnen, Ihre Suchergebnisse bei Bedarf nach Feldern zu sortieren.

sort_by

Fügen Sie ?sort_by={Zeilenname} an Ihre Abfrage an, um nach einer bestimmten Zeile zu sortieren, die im Suchergebnis erscheint.

order_by

Fügen Sie ?order_by={Richtung} an Ihre Abfrage an, um zwischen aufsteigender und absteigender Reihenfolge zu wechseln.

Die Richtungen sind: asc und desc.

TIP

In der Regel werden Sie beide Parameter in Ihrer Suche kombinieren wollen, z.B.: ?query={Suchstring}&sort_by={Zeilenname}&order_by={Richtung}`

Handlungen im Namen anderer Benutzer

Voraussetzung: Der Benutzer, der die Abfrage ausführt, benötigt die Berechtigung admin.user.

Wenn Sie API-Abfragen im Namen anderer Benutzer ausführen, können Sie z.B. Tickets von einem anderen Benutzer erstellen lassen.

Fügen Sie dazu einen neuen HTTP Header mit dem Namen From zu Ihrer Anfrage hinzu. Der Wert dieses Headers kann einer der folgenden sein:

  • Benutzer ID
  • Benutzer-Login
  • Benutzer E-Mail

Die Option from ist für alle Endpunkte verfügbar.

Kodierung

Die API erwartet eine UTF-8-Kodierung. Beachten Sie, dass Sie insbesondere bei der Verwendung von URLs mit Get-Optionen (z. B. ?query=this) Ihre URL entsprechend kodieren müssen.

Wenn Sie mehr über die Kodierung von URLs erfahren möchten, könnte dieser Wikipedia-Artikel hilfreich sein


  1. Representational State Transfer - Application Programming Interface) ↩︎