Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 419 Bytes

notification.rst

File metadata and controls

26 lines (17 loc) · 419 Bytes

Back to index

Notifications

Create notifications

$userId = 123456789;
$targetId = 123456789;
$text = 'This is a notification';
$type = 'Project';
$result = $client->notification->create($userId, $targetId, $text, $type);

Back to top