Don’t miss our Special Offer!

Up to 50% off
Grab Amelia
Grab Amelia

Amelia WP Hooks for Zoom

Please note that using hooks requires a certain level of programming skills and included support refers only to advice.

Zoom meeting added

amelia_before_zoom_meeting_created_filter

Users can use this filter to change the zoom data before a meeting is created

Type: filter

Example:

function example($data, $providerId)
{
    return $data;
}

add_filter('amelia_before_zoom_meeting_created_filter', 'example', 10, 2);

amelia_before_zoom_meeting_created

Users can use this hook to do an action before the zoom meeting is created

Type: action

Example:

function example($data, $providerId)
{
    // do action
}

add_action('amelia_before_zoom_meeting_created', 'example', 10, 2);

Zoom meeting updated

amelia_before_zoom_meeting_updated_filter

Users can change the zoom data before a meeting is updated

Type: filter

Example:

function example($data, $meeringId)
{
    return $data;
}

add_filter('amelia_before_zoom_meeting_updated_filter', 'example', 10, 2);

amelia_before_zoom_meeting_updated

User can use this hook to do an action before the zoom meeting is updated

Type: action

Example:

function example($data, $meetingId)
{
    // do action
}

add_action('amelia_before_zoom_meeting_updated', 'example', 10, 2);

Get zoom users

amelia_get_zoom_users_filter

Users can change the zoom users returned for employee selection

Type: filter

Example:

function example($zoomResult)
{
    return $zoomResult;
}

add_filter('amelia_get_zoom_users_filter', 'example', 10, 1);

amelia_get_zoom_users

Users can use this hook to do an action before the zoom users are returned for employee connection

Type: action

Example:

function example($zoomResult)
{
    // do action
}

add_action('amelia_get_zoom_users', 'example', 10, 1);

Zoom meeting deleted

amelia_before_zoom_meeting_deleted_filter

Users can change the zoom data before a meeting is deleted

Type: filter

Example:

function example($meetingId)
{
    return $meetingId;
}

add_filter('amelia_before_zoom_meeting_deleted_filter', 'example', 10, 1);

amelia_before_zoom_meeting_deleted

Users can use this hook to do an action before the zoom meeting is deleted

Type: action

Example:

function example($meetingId)
{
    // do action
}

add_action('amelia_before_zoom_meeting_deleted', 'example', 10, 1);