POST
/
v2
/
chat
/
{chatId}
/
send-message
curl --request POST \
  --url https://api.gptmaker.ai/v2/chat/{chatId}/send-message \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "message": "<string>"
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chatId
string
required

ID do chat

Body

application/json
Dados do treinamento a ser adicionado
message
string

Mensagem de texto a ser enviada

Response

200
application/json
Mensagem enviada com sucesso
success
boolean