ManualEntrySeenUsers

Introduction

When a User has seen the content of a ManualEntry, intratool will track this as a ManualEntrySeenUser.

Model Definition

Relations

Key
Relation
Type
Relation Field(s)

user

Belongs to

user_id

entry

Belongs to

entry_id

List

Get a list of ManualEntrySeenUsers by ManualEntry.

Definition

GET /api/manual/chapters/entries/{entryId}/seen-users

Example Request

$client = new GuzzleHttp\Client(['base_uri' => 'https://{tenant}.intratool.de']);
$response = $client->request('GET', '/api/manual/chapter/entries/1/seen-users', [
    'headers' => ['Authorization' => "Bearer {accessToken}"]
]);

Example Response Body

Create

Create a new ManualEntrySeenUser by ManualEntry.

Definition

GET /api/manual/chapters/entries/{entryId}/seen-users

Request Keys

Key
Type
Default
Description

entry_id*

integer

-

The related ManualEntry.

Keys with * are required. Keys with ** are normalized to the information given by the route.

Example Request

Example Response Body

Last updated