For the complete documentation index, see llms.txt. This page is also available as Markdown.

_timeline

Returns a timeline of all Availabilities across an array of User IDs, can be set to a specific time period.

Parameters

user_ids

An array of User IDs to have Availability data gathered from.

start_e

Sets an epoch time to collect Availability data from.

end_e

Sets an epoch time to collect Availability data up to.

Example

FM_api('Availability_timeline',[
  'user_ids' => '[113747,113763,113776,113867]',
  'start_e' => '1782774000',
  'end_e' => '1783378800'
  ]
);

Result

On Success

On Failure

If the "user_ids" parameter is not set:

If the "start_e" parameter is not set, has an integer value less than 1, or the "end_e" parameter does not have a higher value than "start_e".

Last updated