Create a new direct message

POST /direct_messages/create
application/x-www-form-urlencoded

Body Required

  • status string

    The message text

  • recipient string

    The username of the recipient

Responses

  • 200

    Message created successfully

  • 400

    Invalid message or recipient

POST /direct_messages/create
curl \
 -X POST https://blips.club/direct_messages/create \
 -H "Content-Type: application/x-www-form-urlencoded" \
 -d 'status=string&recipient=string'
Request example
{
  "status": "string",
  "recipient": "string"
}