GET
/
bulk-sending
curl --request GET \
  --url https://api.jsxmail.org/bulk-sending \
  --header 'Authorization: Bearer <token>'
{
  "bulkSendings": [
    {
      "id": "<string>",
      "title": "<string>",
      "subject": "<string>",
      "content": "<string>",
      "totalContacts": 123,
      "userId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "_count": {
        "messages": 123,
        "failures": 123
      }
    }
  ],
  "totalPages": 123,
  "totalItems": 123,
  "currentPage": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer
default:1

Page number for pagination

take
integer
default:10

Number of items to return per page

Response

200
application/json
List of bulk sending campaigns
bulkSendings
object[]
totalPages
integer
totalItems
integer
currentPage
integer