InfoboardDepartmentSettings
InfoboardDepartmentSettings store settings for a Department in the context of the Infoboard. For example the default InfoboardChannel ID.
Alias
infoboardDepartmentSettings
Relations
Show
Show the current user's InfoboardDepartmentSettings.
Definition
GET /api/infoboard/department-settings/current
Example Request
$client = new GuzzleHttp\Client(['base_uri' => 'https://{tenant}.intratool.de']);
$response = $client->request('GET', '/api/infoboard/department-settings/current', [
'headers' => ['Authorization' => "Bearer {accessToken}"]
]);Example Response
[Adm.] List
Get a list of all InfoboardDepartmentSettings.
Definition
GET /api/administration/infoboard/department-settings
Example Request
Example Response Body
[Adm.] Show
Show InfoboardDepartmentSettings by department_id.
Definition
GET /api/administration/infoboard/department-settings/{department_id}
Example Request
Example Response Body
[Adm.] Create or update
Create new InfoboardDepartmentSettings. When InfoboardDepartmentSettings with the given data already exits, the updated_at timestamp will be updated.
Definition
POST /api/administration/infoboard/department-settings/{department_id}
Request Keys
settings*
array
-
The array with the infoboard settings.
Keys with * are required.
Example Request
Example Response Body
[Adm.] Delete
Delete existing InfoboardDepartmentSettings by department_id.
Definition
DELETE /api/administration//infoboard/department-settings/{department_id}
Example Request
Example Response Body
Last updated