Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Message id to fetch
Response
Message
curl --request GET \
  --url https://public.watermelon.ai/api/v1/messages/{id} \
  --header 'Authorization: Bearer <token>'{
  "id": 123,
  "conversation_id": 123,
  "user_id": 123,
  "type": "text",
  "payload": "<string>",
  "new": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "deleted_at": "2023-11-07T05:31:56Z",
  "read": true
}curl --request GET \
  --url https://public.watermelon.ai/api/v1/messages/{id} \
  --header 'Authorization: Bearer <token>'{
  "id": 123,
  "conversation_id": 123,
  "user_id": 123,
  "type": "text",
  "payload": "<string>",
  "new": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "deleted_at": "2023-11-07T05:31:56Z",
  "read": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Message id to fetch
Message