{ "opencollection": "1.0.0", "info": { "name": "API Reference agent inboxes API", "version": "1.0.0" }, "items": [ { "info": { "name": "inboxes", "type": "folder" }, "items": [ { "info": { "name": "List Inboxes", "type": "http" }, "http": { "method": "GET", "url": "https://api.agentmail.to/v0/inboxes", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "page_token", "value": "", "type": "query" }, { "name": "ascending", "value": "", "type": "query" } ] }, "docs": "**CLI:**\n```bash\nagentmail inboxes list\n```" }, { "info": { "name": "Create Inbox", "type": "http" }, "http": { "method": "POST", "url": "https://api.agentmail.to/v0/inboxes", "headers": [ { "name": "Authorization", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "**CLI:**\n```bash\nagentmail inboxes create --display-name \"My Agent\" --username myagent --domain agentmail.to\n```" }, { "info": { "name": "Get Inbox", "type": "http" }, "http": { "method": "GET", "url": "https://api.agentmail.to/v0/inboxes/:inbox_id", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "inbox_id", "value": "", "type": "path" } ] }, "docs": "**CLI:**\n```bash\nagentmail inboxes get --inbox-id \n```" }, { "info": { "name": "Update Inbox", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.agentmail.to/v0/inboxes/:inbox_id", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "inbox_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "**CLI:**\n```bash\nagentmail inboxes update --inbox-id --display-name \"Updated Name\"\n```" }, { "info": { "name": "Delete Inbox", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.agentmail.to/v0/inboxes/:inbox_id", "headers": [ { "name": "Authorization", "value": "" } ], "params": [ { "name": "inbox_id", "value": "", "type": "path" } ] }, "docs": "**CLI:**\n```bash\nagentmail inboxes delete --inbox-id \n```" } ] } ], "bundled": true }