List account users

This endpoint allows you to list all users in your organization, providing detailed information such as first name, last name, email, email verification status, and the permission level of each user.

Imagine having an organization with multiple users and needing to monitor who has access to which resources or identify the permission level of each member. By using this endpoint, you can quickly get an overview of the organization's users, ensuring more efficient and controlled access management.

With this functionality, it's possible to check who has a verified email and identify the different user groups, all in a simple and practical way via the API.

The request method must be GET. Using POST or PUT will not achieve the desired effect.

List users

GET https://api.zapsign.com.br/api/v1/users/

Query Parameters

Name
Type
Description

page

number

1, 2, 3, n... (25 results per page)

Headers

Name
Type
Description

Authorization*

string

apiToken ahead of the "Bearer" text.

Ex: Bearer c7f35c84-7893-4087-b4fb-d1f06c23

{
	"count": 31,
	"next": "http://api.zapsign.com.br/api/v1/users/?page=2",
	"previous": null,
	"results": [
    	    {
                "first_name": "Name",
                "last_name": "Last",
                "email": "[email protected]",
                "email_verified": true,
                "user_group": {
                    "name": "owner"
                }
            },
            {
                "first_name": "Lorem",
                "last_name": "Ipsum",
                "email": "[email protected]",
                "email_verified": false,
                "user_group": {
                    "name": "self_docs_limited"
                }
            },
	    ...
	]
}

Last updated

Was this helpful?