Skip to main content
Manage user accounts and track their usage using the Limitly REST API.

List Users

Get all users for your account:

Response

Create User

Create a new user account:

Request Parameters

string
required
The name of the user
string
The email address of the user

Response

Get User

Retrieve a specific user by ID:

Response

Update User

Update an existing user:

Request Parameters

string
New name for the user
string
New email address for the user
boolean
Whether the user account is disabled

Delete User

Delete a user account:

Response

Get User Usage

Get usage statistics for a specific user:

Response

Get User API Keys

Get all API keys associated with a user:

Response

Get User Requests

Get detailed request history for a user:

Response

User Status Management

Manage user account status:

Search Users

Search for users by various criteria:

Error Responses

User Not Found

Validation Error

Duplicate Email

Pagination

List endpoints support pagination with the following query parameters:
number
Page number (default: 1)
number
Number of items per page (default: 10, max: 100)

Example

User Properties

The API supports the following user properties:
  • user_id: Unique identifier for the user
  • name: User’s display name
  • email: User’s email address (optional)
  • is_disabled: Whether the user account is disabled
  • created_at: Timestamp when the user was created
  • updated_at: Timestamp when the user was last updated

Next Steps