Welcome to the Tagify Business API documentation. Our API enables seamless integration with your business systems.
All API requests require authentication using an API key. Include your API key in the request header:
X-API-Key: your_api_key_here
To ensure service stability, API requests are subject to rate limiting:
Plan | Rate Limit |
---|---|
Business | 100 requests per minute |
Enterprise | 500 requests per minute |
All API endpoints are prefixed with /api/v1
.
/api/v1/users
Retrieve a list of users for your business.
Parameter | Type | Description |
---|---|---|
page |
integer | Page number (default: 1) |
limit |
integer | Results per page (default: 20, max: 100) |
status |
string | Filter by status (active, inactive, pending) |
/api/v1/users/{user_id}
Retrieve detailed information about a specific user.
Parameter | Type | Description |
---|---|---|
user_id |
string | The unique identifier of the user |
{
"id": "usr_12345",
"email": "[email protected]",
"first_name": "John",
"last_name": "Doe",
"card_id": "card001",
"dob": "1990-05-15",
"status": "active",
"points_balance": 150,
"is_paying": true,
"created_at": "2023-01-15T08:30:00Z",
"updated_at": "2023-06-22T14:45:00Z",
"last_login": "2023-06-22T14:45:00Z",
"membership_level": "gold",
"tags": ["loyal", "frequent"]
}
This guide explains how to import and export users using CSV files in Tagify. The system provides flexible options for handling user data, including automatic or manual card ID assignment.
email
- User's email addressfirst_name
- User's first namelast_name
- User's last namecard_id
- Unique card identifier (auto-generated if not provided)dob
- Date of birth (format: YYYY-MM-DD)status
- User status (default: 'active')points_balance
- Initial points balance (default: 0)is_paying
- Whether the user is a paying member (0 or 1)payment_amount
- Monthly subscription amount (required if is_paying=1)payment_method
- User's preferred payment methodemail,first_name,last_name,card_id,dob,status,points_balance,is_paying,payment_amount,payment_method
[email protected],John,Doe,10000001,1990-05-15,active,150,1,29.99,Credit Card
[email protected],Jane,Doe,10000002,1985-06-20,active,200,1,19.99,Debit Card
Last updated: February 23, 2024