Skip to content

Kalender

TIP

Kalender gehören zu Zammads SLA-Berechnung.

Auflisten

Erforderliche Berechtigung: admin.calendar

GET-Anfrage gesendet: /api/v1/calendars

Show response
json
// HTTP-Code 200 OK

[
  {
    "id": 2,
    "name": "Test calendar",
    "timezone": "Europe/Berlin",
    "business_hours": {
      "mon": {
        "active": true,
        "timeframes": [
          [
            "09:00",
            "17:00"
          ]
        ]
      },
      "tue": {
        "active": true,
        "timeframes": [
          [
            "09:00",
            "17:00"
          ]
        ]
      },
      "wed": {
        "active": true,
        "timeframes": [
          [
            "09:00",
            "17:00"
          ]
        ]
      },
      "thu": {
        "active": true,
        "timeframes": [
          [
            "09:00",
            "17:00"
          ]
        ]
      },
      "fri": {
        "active": true,
        "timeframes": [
          [
            "09:00",
            "17:00"
          ]
        ]
      },
      "sat": {
        "active": false,
        "timeframes": [
          [
            "10:00",
            "14:00"
          ]
        ]
      },
      "sun": {
        "active": false,
        "timeframes": [
          [
            "10:00",
            "14:00"
          ]
        ]
      }
    },
    "default": false,
    "ical_url": "",
    "public_holidays": {
      "2021-11-10": {
        "active": true,
        "summary": "Feast day 1"
      },
      "2021-11-11": {
        "active": true,
        "summary": "Feast day 2"
      }
    },
    "last_log": null,
    "last_sync": "2021-11-10T13:14:20.835Z",
    "updated_by_id": 3,
    "created_by_id": 3,
    "created_at": "2021-11-10T13:14:20.835Z",
    "updated_at": "2021-11-10T13:14:20.835Z"
  }
]

Anzeigen

Erforderliche Berechtigung: admin.calendar

GET-Anfrage gesendet: /api/v1/calendars/{id}

Show response
json
// HTTP-Code 200 OK

{
  "id": 2,
  "name": "Test calendar",
  "timezone": "Europe/Berlin",
  "business_hours": {
    "mon": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "tue": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "wed": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "thu": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "fri": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "sat": {
      "active": false,
      "timeframes": [
        [
          "10:00",
          "14:00"
        ]
      ]
    },
    "sun": {
      "active": false,
      "timeframes": [
        [
          "10:00",
          "14:00"
        ]
      ]
    }
  },
  "default": false,
  "ical_url": "",
  "public_holidays": {
    "2021-11-10": {
      "active": true,
      "summary": "Feast day 1"
    },
    "2021-11-11": {
      "active": true,
      "summary": "Feast day 2"
    }
  },
  "last_log": null,
  "last_sync": "2021-11-10T13:14:20.835Z",
  "updated_by_id": 3,
  "created_by_id": 3,
  "created_at": "2021-11-10T13:14:20.835Z",
  "updated_at": "2021-11-10T13:14:20.835Z"
}

Erstellen

Erforderliche Berechtigung: admin.calendar

POST-Anfrage gesendet: /api/v1/calendars

Show request/response
json
{
  "name": "Test calendar",
  "timezone": "Europe/Berlin",
  "business_hours": {
    "mon": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "tue": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "wed": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "thu": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "fri": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "sat": {
      "active": false,
      "timeframes": [
        [
          "10:00",
          "14:00"
        ]
      ]
    },
    "sun": {
      "active": false,
      "timeframes": [
        [
          "10:00",
          "14:00"
        ]
      ]
    }
  },
  "ical_url": "",
  "public_holidays": {
    "2021-11-10": {
      "active": true,
      "summary": "Feast day 1"
    },
    "2021-11-11": {
      "active": true,
      "summary": "Feast day 2"
    }
  },
  "note": "",
  "id": "c-1"
}

Aktualisierung

Erforderliche Berechtigung: admin.calendar

PUT-Anfrage gesendet: /api/v1/calendars/{id}

Show request/response
json
{
  "name": "Test calendar Update",
  "timezone": "Europe/Berlin",
  "default": false,
  "business_hours": {
    "mon": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "tue": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "wed": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "thu": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "fri": {
      "active": true,
      "timeframes": [
        [
          "09:00",
          "17:00"
        ]
      ]
    },
    "sat": {
      "active": false,
      "timeframes": [
        [
          "10:00",
          "14:00"
        ]
      ]
    },
    "sun": {
      "active": false,
      "timeframes": [
        [
          "10:00",
          "14:00"
        ]
      ]
    }
  },
  "ical_url": "",
  "public_holidays": {
    "2021-11-10": {
      "active": true,
      "summary": "Feast day 1"
    },
    "2021-11-11": {
      "active": true,
      "summary": "Feast day 2"
    }
  },
  "note": "",
  "id": 2
}

Löschen

Erforderliche Berechtigung: admin.calendar

DELETE-Anfrage gesendet: /api/v1/calendars/{id}

DANGER

Dies ist eine dauerhafte Entfernung:

Bitte beachten Sie, dass das Entfernen von Kalenderkonfigurationen nicht rückgängig gemacht werden kann.

Das Entfernen von Kalendern mit Referenzen in SLA-Konfigurationen ist nicht möglich über die API - dies wird angezeigt durch "error": "Can't delete, object has references.". Dies ist kein Fehler.

Show response
json
// HTTP-Code 200 OK

{}