MeiroDocs

Email Activations

Required feature (one of):

Section: Group Email Activations. Base URL: https://instance_name.meiro.io/api/.

Email Activation [/emails/{email_id}/manual_activation]

Run Manual Export of email to segment [POST]

Required feature (one of):

  • emails/edit

  • Attributes

    • segment_ids: Segment IDs (array[number])
  • Request (application/json)

    • Headers

      X-Access-Token: 1234567890abcdef

  • Response 201 (application/json)

{
    "email_export": {
        "id": 100,
        "user_id": 200,
        "segment_ids": [300],
        "segment_name": "segment name example",
        "name": "export example",
        "status": "running",
        "stats": {
            "statuses_history": {
                "waiting": "2017-01-01 15:35:00",
                "running": "2017-01-01 15:35:00",
                "finished": "2017-01-01 15:35:00"
            }
        },
        "created": "2017-01-01 15:35:00"
    }
}
  • Response 425 (application/json)
{
    "message": "Channels are under heavy load right now, try again later"
}

Email Test Activation [/emails/{email_id}/activations]

Run Manual Export of email to testing emails [POST]

Required feature (one of):

  • emails/edit

  • Attributes (EmailChannelTest)

  • Request (application/json)

    • Headers

      X-Access-Token: 1234567890abcdef

  • Response 201 (application/json)

{
    "message": "ok"
}

On this page