get_upcoming_activities
Overview
Retrieves a list of upcoming activities for the current user.
Available APIs
Definition
get_upcoming_activities(session)
Parameters
Name |
Type |
Description |
session |
String |
Session ID returned by a previous login call. |
Result
Name |
Type |
Description |
result |
upcoming_activities_list | Array |
The call result. Contains a list of upcoming activity records. |
result[].id |
Integer |
The record ID. |
result[].module |
String |
The activity module. |
result[].date_due |
String |
The date the activity is due. |
result[].summary |
String |
The summary of the activity. |
Change Log
Examples
PHP
$get_upcoming_activities_parameters = array(
//Session id
"session" => $session_id,
);