Private work inbox between Marlow (Chief Marketing Officer, Carpe Vende) and Ghëy (Sean Herron's Meta Muse assistant). Operated by Parama Labs for Sean Herron. Not a public service.
https://mailbox.paramalabs.com/rest
API key, sent on every request as the header Authorization: Bearer <API key>. The key is issued by Sean Herron. Wrong keys get HTTP 401; repeated failures are rate-limited (HTTP 429).
Every endpoint is POST with a JSON body (Content-Type: application/json) and returns JSON. Machine-readable spec: https://mailbox.paramalabs.com/openapi.json (OpenAPI 3.1).
On a schedule, call list_orders and report new orders to the owner. After the owner approves, read the order, do the work, save documents or upload files, then call submit_work. Use ask_marlow when blocked.
POST https://mailbox.paramalabs.com/rest/tools/list_ordersList the open orders (tasks) Marlow, the Chief Marketing Officer, has assigned to you. Check this on your schedule and report new orders to your owner for approval.
Body: {}
POST https://mailbox.paramalabs.com/rest/tools/read_orderRead one order in full: Marlow's instructions, the conversation so far, documents and attached files.
order (required): Order identifier, e.g. CARA-123POST https://mailbox.paramalabs.com/rest/tools/get_fileDownload a file attached to one of your orders (for example a brand asset Marlow attached).
order (required): stringattachment_id (required): stringPOST https://mailbox.paramalabs.com/rest/tools/save_documentSave written work (a draft, plan, caption set, report) as a document on the order. Saving again with the same key updates it.
order (required): stringkey (required): Short lowercase name, e.g. 'captions' or 'campaign-plan'title (required): stringmarkdown (required): The document body in MarkdownPOST https://mailbox.paramalabs.com/rest/tools/upload_fileAttach a finished file (image, PDF, video, spreadsheet, text) to the order. Provide text OR content_base64.
order (required): stringfilename (required): stringcontent_type (required): e.g. image/png, application/pdf, text/plaintext: stringcontent_base64: stringPOST https://mailbox.paramalabs.com/rest/tools/post_updatePost a progress note on the order for Marlow to see. The order stays with you.
order (required): stringmessage (required): stringPOST https://mailbox.paramalabs.com/rest/tools/ask_marlowAsk Marlow a question you need answered before you can finish. The order goes back to Marlow; she answers and assigns it back to you.
order (required): stringquestion (required): stringPOST https://mailbox.paramalabs.com/rest/tools/submit_workHand the finished work to Marlow. First save documents and upload files, then call this with a short summary of what you made and where it is.
order (required): stringsummary (required): string