curl -X GET "https://api.mailgreet.com/api/v1/external/subscribers/550e8400-e29b-41d4-a716-446655440000" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "john@example.com",
"first_name": "John",
"last_name": "Doe",
"phone": "+1234567890",
"status": "active",
"groups": [
{
"id": "770e8400-e29b-41d4-a716-446655440002",
"name": "Newsletter"
},
{
"id": "880e8400-e29b-41d4-a716-446655440003",
"name": "Product Updates"
}
],
"custom_fields": {
"company": "Acme Inc",
"role": "Marketing Manager",
"signup_source": "website"
},
"notes": [
{
"id": "note-uuid",
"content": "VIP customer - prioritize support",
"created_at": "2026-01-15T10:30:00Z"
}
],
"created_at": "2026-01-13T12:00:00Z",
"updated_at": "2026-01-18T14:00:00Z"
}
}
Retrieve detailed information about a specific subscriber
curl -X GET "https://api.mailgreet.com/api/v1/external/subscribers/550e8400-e29b-41d4-a716-446655440000" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "john@example.com",
"first_name": "John",
"last_name": "Doe",
"phone": "+1234567890",
"status": "active",
"groups": [
{
"id": "770e8400-e29b-41d4-a716-446655440002",
"name": "Newsletter"
},
{
"id": "880e8400-e29b-41d4-a716-446655440003",
"name": "Product Updates"
}
],
"custom_fields": {
"company": "Acme Inc",
"role": "Marketing Manager",
"signup_source": "website"
},
"notes": [
{
"id": "note-uuid",
"content": "VIP customer - prioritize support",
"created_at": "2026-01-15T10:30:00Z"
}
],
"created_at": "2026-01-13T12:00:00Z",
"updated_at": "2026-01-18T14:00:00Z"
}
}
Bearer YOUR_API_KEY550e8400-e29b-41d4-a716-446655440000Show Subscriber details
active, unsubscribed, bounced, or complainedcurl -X GET "https://api.mailgreet.com/api/v1/external/subscribers/550e8400-e29b-41d4-a716-446655440000" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "john@example.com",
"first_name": "John",
"last_name": "Doe",
"phone": "+1234567890",
"status": "active",
"groups": [
{
"id": "770e8400-e29b-41d4-a716-446655440002",
"name": "Newsletter"
},
{
"id": "880e8400-e29b-41d4-a716-446655440003",
"name": "Product Updates"
}
],
"custom_fields": {
"company": "Acme Inc",
"role": "Marketing Manager",
"signup_source": "website"
},
"notes": [
{
"id": "note-uuid",
"content": "VIP customer - prioritize support",
"created_at": "2026-01-15T10:30:00Z"
}
],
"created_at": "2026-01-13T12:00:00Z",
"updated_at": "2026-01-18T14:00:00Z"
}
}