InfoboardPostReadUsers
Last updated
$client = new GuzzleHttp\Client(['base_uri' => 'https://{tenant}.intratool.de']);
$response = $client->request('GET', '/api/infoboard/posts/1/read-users', [
'headers' => ['Authorization' => "Bearer {accessToken}"]
]);[
{
"id": 1,
"user_id": 4,
"post_id": 1,
"created_at": "2026-08-06 10:20:00"
},
{
"id": 2,
"user_id": 5,
"post_id": 1,
"created_at": "2026-08-06 10:25:00"
}
]$client = new GuzzleHttp\Client(['base_uri' => 'https://{tenant}.intratool.de']);
$response = $client->request('POST', '/api/infoboard/posts/1/read-users', [
'headers' => ['Authorization' => "Bearer {accessToken}"]
]);{
"status": "success",
"data": {
"id": 1,
"user_id": 4,
"post_id": 1,
"created_at": "2026-08-06 10:20:00"
}
}