GET api/Transmission?events={events}&per_page={per_page}&from={from}&to={to}&page={page}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
events

string

Required

per_page

integer

Required

from

string

Required

to

string

Required

page

integer

Default value is 0

Body Parameters

None.

Response Information

Resource Description

MongoResult
NameDescriptionTypeAdditional information
results

Collection of VultusMongoMTA

None.

total_count

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Event_ID": "sample string 1",
      "header_bulkmaster_id": "sample string 2",
      "rcpt": "sample string 3",
      "header_Message-ID": "sample string 4",
      "type": "sample string 5",
      "dsnAction": "sample string 6",
      "dsnStatus": "sample string 7",
      "timeLogged": "sample string 8",
      "header_ToGroup_ID": "sample string 9",
      "bounceCat": "sample string 10",
      "orig": "sample string 11",
      "header_CompanyUrlKey": "sample string 12",
      "header_CustomerID": 13
    },
    {
      "Event_ID": "sample string 1",
      "header_bulkmaster_id": "sample string 2",
      "rcpt": "sample string 3",
      "header_Message-ID": "sample string 4",
      "type": "sample string 5",
      "dsnAction": "sample string 6",
      "dsnStatus": "sample string 7",
      "timeLogged": "sample string 8",
      "header_ToGroup_ID": "sample string 9",
      "bounceCat": "sample string 10",
      "orig": "sample string 11",
      "header_CompanyUrlKey": "sample string 12",
      "header_CustomerID": 13
    }
  ],
  "total_count": 1
}

application/xml, text/xml

Sample:
<EventResponse.MongoResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <results>
    <EventResponse.VultusMongoMTA>
      <Event_ID>sample string 1</Event_ID>
      <bounceCat>sample string 10</bounceCat>
      <dsnAction>sample string 6</dsnAction>
      <dsnStatus>sample string 7</dsnStatus>
      <header_CompanyUrlKey>sample string 12</header_CompanyUrlKey>
      <header_CustomerID>13</header_CustomerID>
      <header_Message_ID>sample string 4</header_Message_ID>
      <header_ToGroup_ID>sample string 9</header_ToGroup_ID>
      <header_bulkmaster_id>sample string 2</header_bulkmaster_id>
      <orig>sample string 11</orig>
      <rcpt>sample string 3</rcpt>
      <timeLogged>sample string 8</timeLogged>
      <type>sample string 5</type>
    </EventResponse.VultusMongoMTA>
    <EventResponse.VultusMongoMTA>
      <Event_ID>sample string 1</Event_ID>
      <bounceCat>sample string 10</bounceCat>
      <dsnAction>sample string 6</dsnAction>
      <dsnStatus>sample string 7</dsnStatus>
      <header_CompanyUrlKey>sample string 12</header_CompanyUrlKey>
      <header_CustomerID>13</header_CustomerID>
      <header_Message_ID>sample string 4</header_Message_ID>
      <header_ToGroup_ID>sample string 9</header_ToGroup_ID>
      <header_bulkmaster_id>sample string 2</header_bulkmaster_id>
      <orig>sample string 11</orig>
      <rcpt>sample string 3</rcpt>
      <timeLogged>sample string 8</timeLogged>
      <type>sample string 5</type>
    </EventResponse.VultusMongoMTA>
  </results>
  <total_count>1</total_count>
</EventResponse.MongoResult>