curl -X GET "https://api.foxreach.io/api/v1/campaigns/cmp_abc123/accounts" \
-H "X-API-Key: otr_your_key"
{
"data": [
{
"id": "acc_001",
"email": "[email protected]",
"displayName": "Sales Team",
"provider": "gmail",
"isActive": true,
"dailyLimit": 50,
"sentToday": 12,
"healthScore": 92
}
]
}
Retrieve the email accounts assigned to a campaign for inbox rotation.
curl -X GET "https://api.foxreach.io/api/v1/campaigns/cmp_abc123/accounts" \
-H "X-API-Key: otr_your_key"
{
"data": [
{
"id": "acc_001",
"email": "[email protected]",
"displayName": "Sales Team",
"provider": "gmail",
"isActive": true,
"dailyLimit": 50,
"sentToday": 12,
"healthScore": 92
}
]
}
Show Account object
curl -X GET "https://api.foxreach.io/api/v1/campaigns/cmp_abc123/accounts" \
-H "X-API-Key: otr_your_key"
{
"data": [
{
"id": "acc_001",
"email": "[email protected]",
"displayName": "Sales Team",
"provider": "gmail",
"isActive": true,
"dailyLimit": 50,
"sentToday": 12,
"healthScore": 92
}
]
}
| Status | Description |
|---|---|
404 | Campaign not found |