# Drip Integration via LowCodeAPI
**Last Updated**: February 10, 2026
## Overview
E-commerce marketing automation
**Categories:**
- {'id': 'marketing-email', 'name': 'Marketing Email'}
## Base Endpoint
https://api.lowcodeapi.com/drip
**Important**: Always include the provider name in the URL path after `api.lowcodeapi.com/`
## Authentication
**Type:** TOKEN
**Official Documentation:** https://developer.drip.com/
## URL Format (Important)
LowCodeAPI supports two URL formats. **Always try the New Format first**, then fall back to Old Format if needed.
### New Format (Priority)
- Path parameters stay in the URL path
- Do NOT include path parameters as query parameters
- Example: `https://api.lowcodeapi.com/{provider}/resource/{id}?api_token=XXX`
### Old Format (Fallback)
- Path parameters become query parameters
- Example: `https://api.lowcodeapi.com/{provider}/resource/id?id={id}&api_token=XXX`
### Decision Flow for AI Agents
1. Always use **New Format** first - keep path parameters in the URL path
2. If you get a 404 or error, try **Old Format** with sanitized path
3. Log which format worked for future requests to this provider
## API Categories
## Common Endpoints
### List all accounts
**Method:** GET
**LowCodeAPI Path:** /v2/accounts
**New Format URL:**
https://api.lowcodeapi.com/drip/v2/accounts?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/drip/v2/accounts?api_token=YOUR_API_TOKEN
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/drip/v2/accounts?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://developer.drip.com/#list-all-accounts
### Fetch an account
**Method:** GET
**LowCodeAPI Path:** /v2/accounts/:account_id
**New Format URL:**
https://api.lowcodeapi.com/drip/v2/accounts/:account_id?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/drip/v2/accounts/account_id?account_id={account_id}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| account_id | number | |
**Example Request (New Format):**
```bash
curl -X GET 'https://api.lowcodeapi.com/drip/v2/accounts/:account_id?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://developer.drip.com/#fetch-an-account
### Create or update a batch of subscribers
**Method:** POST
**LowCodeAPI Path:** /v2/:account_id/subscribers/batches
**New Format URL:**
https://api.lowcodeapi.com/drip/v2/:account_id/subscribers/batches?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/drip/v2/account_id/subscribers/batches?account_id={account_id}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| account_id | number | |
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| batches | array | |
**Example Request (New Format):**
```bash
curl -X POST 'https://api.lowcodeapi.com/drip/v2/:account_id/subscribers/batches?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://developer.drip.com/#create-or-update-a-batch-of-subscribers
### Unsubscribe a batch of subscribers
**Method:** POST
**LowCodeAPI Path:** /v2/:account_id/unsubscribes/batches
**New Format URL:**
https://api.lowcodeapi.com/drip/v2/:account_id/unsubscribes/batches?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/drip/v2/account_id/unsubscribes/batches?account_id={account_id}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| account_id | number | |
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| batches | array | |
**Example Request (New Format):**
```bash
curl -X POST 'https://api.lowcodeapi.com/drip/v2/:account_id/unsubscribes/batches?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://developer.drip.com/#unsubscribe-a-batch-of-subscribers
### Record a batch of events
**Method:** POST
**LowCodeAPI Path:** /v2/:account_id/events/batches
**New Format URL:**
https://api.lowcodeapi.com/drip/v2/:account_id/events/batches?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/drip/v2/account_id/events/batches?account_id={account_id}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| account_id | number | |
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| batches | array | |
**Example Request (New Format):**
```bash
curl -X POST 'https://api.lowcodeapi.com/drip/v2/:account_id/events/batches?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://developer.drip.com/#record-a-batch-of-events
### Create or update a batch of carts
**Method:** POST
**LowCodeAPI Path:** /v3/:account_id/shopper_activity/cart/batch
**New Format URL:**
https://api.lowcodeapi.com/drip/v3/:account_id/shopper_activity/cart/batch?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/drip/v3/account_id/shopper_activity/cart/batch?account_id={account_id}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| account_id | number | |
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| carts | array | |
**Example Request (New Format):**
```bash
curl -X POST 'https://api.lowcodeapi.com/drip/v3/:account_id/shopper_activity/cart/batch?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://developer.drip.com/#create-or-update-a-batch-of-carts
### Create or update a batch of orders (Legacy)
**Method:** POST
**LowCodeAPI Path:** /v2/:account_id/orders/batches
**New Format URL:**
https://api.lowcodeapi.com/drip/v2/:account_id/orders/batches?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/drip/v2/account_id/orders/batches?account_id={account_id}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| account_id | number | |
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| batches | array | |
**Example Request (New Format):**
```bash
curl -X POST 'https://api.lowcodeapi.com/drip/v2/:account_id/orders/batches?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://developer.drip.com/#create-or-update-a-batch-of-orders-legacy
### Create or update a batch of orders
**Method:** POST
**LowCodeAPI Path:** /v3/:account_id/shopper_activity/order/batch
**New Format URL:**
https://api.lowcodeapi.com/drip/v3/:account_id/shopper_activity/order/batch?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/drip/v3/account_id/shopper_activity/order/batch?account_id={account_id}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| account_id | number | |
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| orders | array | |
**Example Request (New Format):**
```bash
curl -X POST 'https://api.lowcodeapi.com/drip/v3/:account_id/shopper_activity/order/batch?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://developer.drip.com/#create-or-update-a-batch-of-orders
### Create or update a batch of products
**Method:** POST
**LowCodeAPI Path:** /v3/:account_id/shopper_activity/product/batch
**New Format URL:**
https://api.lowcodeapi.com/drip/v3/:account_id/shopper_activity/product/batch?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/drip/v3/account_id/shopper_activity/product/batch?account_id={account_id}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| account_id | number | |
**Request Body:**
| Field | Type | Description |
|-------|------|-------------|
| products | array | |
**Example Request (New Format):**
```bash
curl -X POST 'https://api.lowcodeapi.com/drip/v3/:account_id/shopper_activity/product/batch?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://developer.drip.com/#create-or-update-a-batch-of-products
### Create or update a cart
**Method:** POST
**LowCodeAPI Path:** /v3/:account_id/shopper_activity/cart
**New Format URL:**
https://api.lowcodeapi.com/drip/v3/:account_id/shopper_activity/cart?api_token=YOUR_API_TOKEN
**Old Format URL:**
https://api.lowcodeapi.com/drip/v3/account_id/shopper_activity/cart?account_id={account_id}&api_token=YOUR_API_TOKEN
**Path Parameters:**
| Parameter | Type | Description |
|-----------|------|-------------|
| account_id | number | |
**Example Request (New Format):**
```bash
curl -X POST 'https://api.lowcodeapi.com/drip/v3/:account_id/shopper_activity/cart?api_token=YOUR_API_TOKEN'
```
**Official Documentation:** https://developer.drip.com/#create-or-update-a-cart
## Usage Examples
### Example 1: Send an Email
```bash
# Send an email - no path parameters needed
curl -X POST "https://api.lowcodeapi.com/drip/send?api_token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"from": "[email protected]",
"to": "[email protected]",
"subject": "Test Email",
"text": "This is a test email from Drip"
}'
```
### Example 2: List Sent Emails
```bash
# Get list of sent emails
curl -X GET "https://api.lowcodeapi.com/drip/messages?api_token=YOUR_API_TOKEN"
```
### Example 3: Get Email Details
```bash
# Get specific message by ID
curl -X GET "https://api.lowcodeapi.com/drip/messages/{MESSAGE_ID}?api_token=YOUR_API_TOKEN"
```
## Error Handling
LowCodeAPI returns standard HTTP status codes. Common errors:
| Status Code | Description |
|-------------|-------------|
| 200 | Success - Request completed successfully |
| 400 | Bad Request - Invalid parameters or request body |
| 401 | Unauthorized - Invalid or missing API token |
| 403 | Forbidden - Insufficient permissions |
| 404 | Not Found - Endpoint or resource doesn't exist |
| 429 | Too Many Requests - Rate limit exceeded |
| 500 | Server Error - Provider API error |
All error responses include error details:
```json
{
"data": {
"error": {
"message": "Error description",
"code": "ERROR_CODE"
}
}
}
```
## Complete Endpoint Reference
| Endpoint | Method | Category |
|----------|--------|----------|
| List all accounts | GET | Accounts |
| Fetch an account | GET | Accounts |
| Create or update a batch of subscribers | POST | Batch API |
| Unsubscribe a batch of subscribers | POST | Batch API |
| Record a batch of events | POST | Batch API |
| Create or update a batch of carts | POST | Batch API |
| Create or update a batch of orders (Legacy) | POST | Batch API |
| Create or update a batch of orders | POST | Batch API |
| Create or update a batch of products | POST | Batch API |
| Create or update a cart | POST | Cart Activity |
| List all conversions | GET | Conversions |
| Fetch a conversion | GET | Conversions |
| List all custom field identifiers used in an accou... | GET | Custom Fields |
| List all Email Series Campaigns | GET | Email Series Campaigns |
| Fetch an Email Series Campaign | GET | Email Series Campaigns |
| Activate an Email Series Campaign | POST | Email Series Campaigns |
| Pause an Email Series Campaign | POST | Email Series Campaigns |
| List all subscribers subscribed to an Email Series... | GET | Email Series Campaigns |
| Subscribe someone to an Email Series Campaign | POST | Email Series Campaigns |
| List all of a subscriber's Email Series Campaign s... | GET | Email Series Campaigns |
| Record an event | POST | Events |
| List all custom events actions used in an account | GET | Events |
| List all forms | GET | Forms |
| Fetch a form | GET | Forms |
| Create or update an order | POST | Order Activity |
| Create or update an order (Legacy) | POST | Orders (Legacy) |
| Create or update a refund (Legacy) | POST | Orders (Legacy) |
| Create or update a product | POST | Product Activity |
| List all Single-Email Campaigns | GET | Single-Email Campaigns |
| Fetch a Single-Email Campaign | GET | Single-Email Campaigns |
| Create or update a subscriber | POST | Subscribers |
| List all subscribers | GET | Subscribers |
| Fetch a subscriber | GET | Subscribers |
| Remove a subscriber from one or all Email Series C... | POST | Subscribers |
| Unsubscribe from all mailings | POST | Subscribers |
| Delete a subscriber | DELETE | Subscribers |
| List all tags used in an account | GET | Tags |
| Apply a tag to a subscriber | POST | Tags |
| Remove a tag from a subscriber | DELETE | Tags |
| Fetch the authenticated user | GET | Users |
| List all webhooks | GET | Webhooks |
| Fetch a webhook | GET | Webhooks |
| Create a new webhook | POST | Webhooks |
| Destroy a webhook | DELETE | Webhooks |
| List all workflows | GET | Workflows |
| Fetch a workflow | GET | Workflows |
| Activate a workflow | POST | Workflows |
| Pause a workflow | POST | Workflows |
| Start someone on a workflow | POST | Workflows |
| Remove a subscriber from a workflow | DELETE | Workflows |
| List all workflow triggers | GET | Workflows |
| Create a workflow trigger | POST | Workflows |
| Update a workflow trigger | PUT | Workflows |
## API Definition Endpoints
You can fetch the complete API specification for this provider:
**New Format (OpenAPI spec):**
```bash
curl 'https://backend.lowcodeapi.com/drip/openapi'
```
**Old Format (API definition):**
```bash
curl 'https://backend.lowcodeapi.com/drip/definition'
```
## Response Format
All responses are wrapped in a `data` key:
```json
{
"data": {
// Actual response from provider (object or array)
}
}
```