v1

latestOpenAPI 3.0.3MIT2026-07-24122271451.2 KB
Members

Member Details

A method to retrieve a member's details by ID.

User - is an account with a license in the Organization.
Member - is a User with a predefined Role in the Workspace.

ParameterDescription
user_idA unique identifier of the user in the organization
membership_idA unique identifier of the user in the workspace
emailA user email address
first_nameA user's first name
last_nameA user's last name
is_activeA boolean value that identifies if a member is active and not blocked
workspaceA unique identifier of the user's current active workspace
workspace_nameA name of the user's current active workspace
email_verifiedA boolean value that identifies if the email is verified
roleA member's role in the workspace
user_licenseA user license in the organization:  <br/>Full (Standard)<br/>Read-only<br/>eSignature<br/>Guest<br/>Creator
date_createdA date when a member was added to the workspace
date_modifiedLast modified date of a member
get/public/v1/members/{id}

Path parameters

idstring required

Membership id.

Response

OK

user_idstring

A unique identifier of the user in the organization.

membership_idstring

A unique identifier of the user in the workspace.

emailstring

A user's email address.

first_namestring

A user's first name.

last_namestring

A user's last name.

is_activeboolean

A boolean value that identifies if a member is active in the workspace.

workspacestring

A unique identifier of the user's current active workspace.

workspace_namestring

A name of the user's current active workspace.

emails_verifiedboolean

A boolean value that identifies if the email is verified.

rolestring

A member's role in the workspace.

user_licensestring

A user license in the organization.

date_createdstring

A date when a member was added to the workspace.

date_modifiedstring

Last modified date of a member.

Example response

{
  "user_id": "ajnN7eGutJZsRKjQrNuPkh",
  "membership_id": "radQBiBkU7MBk59NSgaGf5",
  "email": "josh@example.com",
  "first_name": "Josh",
  "last_name": "Ron",
  "is_active": true,
  "workspace": "xc4mBZ7dKErXQtJwwD6Ghg",
  "workspace_name": "PandaDoc",
  "emails_verified": true,
  "role": "Admin",
  "user_license": "Full",
  "date_created": "2020-11-17T08:42:34.237567Z",
  "date_modified": "2021-11-30T10:30:35.071428Z"
}