added

API: New GET /users Endpoint

2880

We're excited to announce the launch of the GET /users endpoint, which strengthens the admin API. From now on, you'll be able to easily retrieve the team members belonging to your Livestorm organization, as well as the ones who still have pending invitations.

Here's how this endpoint works, with a basic cURL request:

curl --request GET \
     --url https://api.livestorm.co/v1/users \
     --header 'Accept: application/vnd.api+json' \
     --header 'Authorization: YOUR_API_TOKEN'

Additionally, you can use the following filters with this new endpoint:

  • filter[email]: (string) find a matching team member using his/her email address (case insensitive)
  • filter[role]: (enum) find team members that have the following role: moderator or host
  • filter[pending_invite]: (boolean) true|false

Check this new endpoint here →