Skip to main content
POST
/
room
/
:room_id
/
document
/
:document_name
Create Document
curl --request POST \
  --url https://api.example.com/room/:room_id/document/:document_name
{
  "status": 123
}
Creates a new document in a specified room.

Authentication

No authentication required.

Path Parameters

room_id
string
required
The unique identifier of the room where the document will be created.
document_name
string
required
The name for the new document.

Response

status
number
Returns 200 on successful document creation.

Error Responses

  • 500 - Internal server error occurred while creating the document.

Example Request

curl -X POST \
  https://api.planttogether.com/room/abc123/document/my-document \
  -H "Content-Type: application/json"

Example Response

200 OK

Build docs developers (and LLMs) love