Inbound Email
List Inbound Emails
List all inbound emails associated with your API key. Returns active and paused inbound emails (deleted ones are excluded).
get/v4/inbound-email
Query parameters
status'active' | 'paused' | 'all'
Filter by status
limitinteger
Maximum number of inbound emails to return
offsetinteger
Pagination offset
Response
List of inbound emails
Example response
{
"inbound_emails": [
{
"allowed_sources": [
"cdsl",
"nsdl"
],
"callback_url": "https://api.yourapp.com/webhooks/cas-email",
"created_at": "2025-02-21T10:30:00Z",
"email": "ie_a1b2c3d4e5f6@import.casparser.in",
"inbound_email_id": "ie_a1b2c3d4e5f6",
"metadata": {
"plan": "premium"
},
"reference": "user_12345",
"status": "active",
"updated_at": "2025-02-21T10:30:00Z"
}
],
"limit": 50,
"status": "success",
"total": 15
}