Skip to main content
POST
/
inbox
Create Inbox
curl --request POST \
  --url http://localhost:3001/inbox/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "officeId": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "officeId": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.jurichat.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
name
string
required
Required string length: 1 - 255
officeId
string
required
Pattern: ^[cC][^\s-]{8,}$

Response

Default Response

id
string
required
name
string
required
officeId
string
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required