diff --git a/docs-mintlify/openapi/admin.json b/docs-mintlify/openapi/admin.json index e7cc3fb27..d577870a2 100644 --- a/docs-mintlify/openapi/admin.json +++ b/docs-mintlify/openapi/admin.json @@ -2713,7 +2713,7 @@ "/emails/outbox": { "get": { "summary": "List email outbox", - "description": "Lists all emails in the outbox with optional filtering by status or simple_status.", + "description": "Lists all emails in the outbox with optional filtering by status, simple_status, or user_id.", "parameters": [ { "name": "status", @@ -2731,6 +2731,16 @@ }, "required": false }, + { + "name": "user_id", + "in": "query", + "schema": { + "type": "string", + "description": "Filter for emails whose recipient is the given user ID." + }, + "description": "Filter for emails whose recipient is the given user ID.", + "required": false + }, { "name": "limit", "in": "query", diff --git a/docs-mintlify/openapi/server.json b/docs-mintlify/openapi/server.json index 1f7f292c3..645cdce0c 100644 --- a/docs-mintlify/openapi/server.json +++ b/docs-mintlify/openapi/server.json @@ -2713,7 +2713,7 @@ "/emails/outbox": { "get": { "summary": "List email outbox", - "description": "Lists all emails in the outbox with optional filtering by status or simple_status.", + "description": "Lists all emails in the outbox with optional filtering by status, simple_status, or user_id.", "parameters": [ { "name": "status", @@ -2731,6 +2731,16 @@ }, "required": false }, + { + "name": "user_id", + "in": "query", + "schema": { + "type": "string", + "description": "Filter for emails whose recipient is the given user ID." + }, + "description": "Filter for emails whose recipient is the given user ID.", + "required": false + }, { "name": "limit", "in": "query",