Skip to main content
< All Topics
Print

Through the member portal the only activities action that the member can perform is a get_actvities. This action takes 2 parameters, start and end, which are until timestamps representing the start and end day to get the activities for.

{
"action":"get_activities",
"start": <unix_timestamp>,
"end": <unix_timestamp>
}

The successful response will have a JSON body with the key activities which will have an array of the activities to display. Each activity will have the following data:

{
"start": <time>,
"end": <time>,
"date": <unix_timestamp>,
"id":<unique id>,
"title":<string>,
"description":<string>
}

It would be typical to display this as a calendar view with next and previous month controls.

Table of Contents