LearnDash LMS WordPress REST API User Authentication for Courses Listing

While working on a project where LearnDash LMS WordPress Plugin courses listing data needed to be fetched using LearnDash LMS REST API, I encountered following 403 response from API when you call the API with JWT Bearer Token for Authorization: { “code”: “ld_rest_cannot_view”, “message”: “Sorry, you are not allowed to view this item.”, “data”: {…

BuddyPress Groups endpoints to invite users to join group for JSON API User Plus WordPress Plugin

Three new endpoints have been added in the JSON API User Plus plugin for BuddyPress Groups component to allow user to request membership of group, send user invitation to join BP group and oen admin endpoint to send multiple user group joining invite like whatsapp. These are the three new endpoints: groups_send_membership_request groups_invite_user groups_invite_users_admin 1. groups_send_membership_request Create a…

BuddyPress Groups New Endpoints to check if the user is member, mod or admin group

Three new endpoints have been added in the JSON API User Plus plugin for BuddyPress Groups component to check if the user is member, mod or admin of any given BP group. These are the three new endpoints: groups_is_user_admin groups_is_user_mod groups_is_user_member 1. groups_is_user_admin Check whether a user is an admin of a given group. Returns (int|bool)…