ZapSign API
English
English
  • General Information
  • Getting Started
  • ZapSign Environments
  • Ready-to-use requests!
  • Authentication
    • Static token
    • JWT Authentication
      • Get access token
      • Refresh your access token
  • Types of Tokens
  • API versioning
  • Rate Limit Policies
  • Incident alerts
  • How Payment Works
  • Status Code
  • Account
    • Plan Information
    • List account users
    • Create account users
    • Delete account user
  • Documents
    • Create document via Upload
    • OneClick (ClickWrap)
      • Create document (OneClick)
    • Create document via Template
    • Add attachment (extra document)
    • Add attachment (extra document) via Template
    • Detail document
    • List documents
    • Delete document
    • Document Audit Trail
    • Optional: Place signatures
    • Reject Documents
  • Signers
    • Detail signer
    • Update signer
    • Add signer
    • Delete signer
    • Batch sign via API
    • Reject Documents by User
  • Templates
    • Create template (DOCX)
      • Configure Template Form
    • List templates
    • Get template
    • Update template
    • Delete template
  • Partnerships
    • Update Payment Status
    • Create Account
  • TIMESTAMP
    • Add timestamp
  • Background Check
  • Introduction
  • Understanding the Result
  • Creating a Background Check
    • Person Check
    • Company check
  • Retrieve a Check
  • Check details
  • Webhooks
    • How webhooks works
    • Testing webhooks on ZapSign
    • Create Webhook
    • Webhooks logs
    • Events
      • Document
        • Doc created
        • Doc deleted
        • Created signer
      • Signer
        • Signature request send
        • Document viewed
        • Reading confirmation
        • Doc signed
        • Doc refused
        • Email bounce
        • Failed Validation
      • Background check
        • Background check completed
    • Reprocessing Documents and Webhooks
    • Delete Webhook
  • Widget
    • How widget works
Powered by GitBook
On this page

Was this helpful?

  1. Account

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": "adm@adm.com",
                "email_verified": true,
                "user_group": {
                    "name": "owner"
                }
            },
            {
                "first_name": "Lorem",
                "last_name": "Ipsum",
                "email": "loremipsum@email.com",
                "email_verified": false,
                "user_group": {
                    "name": "self_docs_limited"
                }
            },
	    ...
	]
}
PreviousPlan InformationNextCreate account users

Last updated 1 month ago

Was this helpful?