GET api/v1/bots/twitterbots/{id}/Tweets
Get the tweets send by the bot
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | globally unique identifier | Required | 
Body Parameters
None.
Response Information
Resource Description
TweetsDto| Name | Description | Type | Additional information | 
|---|---|---|---|
| Tweeted | Collection of TweetedDto | None. | 
Response Formats
application/json, text/json, application/senml+json
            Sample:
        
{
  "Tweeted": [
    {
      "Date": "2025-10-30T16:31:48.3117557+00:00",
      "Message": "sample string 2",
      "NotificationTriggeredId": "f5f1b2af-7026-4c12-a6f0-5b4e0a07b538",
      "TwitterId": "sample string 3",
      "Success": true,
      "ErrorMessage": "sample string 5"
    },
    {
      "Date": "2025-10-30T16:31:48.3117557+00:00",
      "Message": "sample string 2",
      "NotificationTriggeredId": "f5f1b2af-7026-4c12-a6f0-5b4e0a07b538",
      "TwitterId": "sample string 3",
      "Success": true,
      "ErrorMessage": "sample string 5"
    }
  ]
}
        application/xml, text/xml
            Sample:
<TweetsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnalysisUK.Tinamous.www.ApiControllers.Models.Bots.TwitterBot">
  <Tweeted>
    <TweetedDto>
      <Date>2025-10-30T16:31:48.3117557+00:00</Date>
      <ErrorMessage>sample string 5</ErrorMessage>
      <Message>sample string 2</Message>
      <NotificationTriggeredId>f5f1b2af-7026-4c12-a6f0-5b4e0a07b538</NotificationTriggeredId>
      <Success>true</Success>
      <TwitterId>sample string 3</TwitterId>
    </TweetedDto>
    <TweetedDto>
      <Date>2025-10-30T16:31:48.3117557+00:00</Date>
      <ErrorMessage>sample string 5</ErrorMessage>
      <Message>sample string 2</Message>
      <NotificationTriggeredId>f5f1b2af-7026-4c12-a6f0-5b4e0a07b538</NotificationTriggeredId>
      <Success>true</Success>
      <TwitterId>sample string 3</TwitterId>
    </TweetedDto>
  </Tweeted>
</TweetsDto>