GET direct_messages/events/show
get-event

GET direct_messages/events/show

Returns a single Direct Message event by the given id.

Resource URL

https://api.twitter.com/1.1/direct_messages/events/show.json

Resource Information

Response formats JSON
Requires authentication? Yes (user context only)
Rate limited? Yes
Requests / 15-min window (user auth) 15

Parameters

id (required) The id of the Direct Message event that should be returned.

Example request using Twurl

twurl -X GET /1.1/direct_messages/events/show.json?id=110

Example Response

{
  "event": 
    "id": "110", 
    "created_timestamp": "5300",
    "type": "message_create",
    "message_create": {
      ...
    }
  }
}