GET
/
api
/
messages
/
campaign
/
list
List campaigns
curl --request GET \
  --url https://app.minimo.it/api/messages/campaign/list \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "Winter Sale Campaign",
      "status": "scheduled",
      "created": "2023-11-07T05:31:56Z",
      "updated": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

Successful response with the list of campaigns

The response is of type object.