GET
/
automations
curl --request GET \
  --url https://mailcare.io/api/teams/{teamId}/automations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "title": "<string>",
      "sender": "<string>",
      "inbox": "<string>",
      "subject": "<string>",
      "has_attachments": true,
      "action_url": "<string>",
      "action_secret_token": "<string>",
      "payload_format": "<string>",
      "action_delete_email": true,
      "emails_received": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "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/vnd.mailcare.v1+json

Successfully retrieved automations.

The response is of type object.