Skip to main content
POST
/
chat
Post Chat Messages
curl --request POST \
  --url https://api.example.com/chat \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "lobbyId": "<string>",
    "message": "<string>",
    "uuid": "<string>"
  }
]
'
{
  "chat": [
    {
      "lobbyId": "<string>",
      "message": "<string>",
      "uuid": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.seraph.si/llms.txt

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

Body

application/json

Array of player chat messages to post

lobbyId
string
message
string
uuid
string

Response

Successfully posted chat messages

chat
object[]