Wednesday, 8 April 2020

Mailingboss api integration (Builderall)

Mailingboss api integration

Get Api token after login to builderall acount then mailingboss integration section.

We can integrate these given api in PHP or jquery ajax


1) Get list api from Mailingboss autoresponder Email

Request example


GET: https://member.mailingboss.com/integration/index.php/lists/{api-token} 

Response example JSON:

 {
status: "success",
data: [{
list_uid: "m07ug174cie26",
name: "E-mail Marketing",
display_name: "E-mail Marketing",
description: "E-mail Marketing"
}, {
list_uid: "mj546z2pwp2de",
name: "Lista Teste",
display_name: "Lista Teste",
description: "Lista" 
                  }
                    ]
}

2) Add lead to list api example of Mailingboss autoresponder Email


Request example 


POST: https://member.mailingboss.com/integration/index.php/lists/subscribers/create/{api-token}

PARAMS:
email: teste@teste.com 
                list_uid: vh485p76so057 
                status:confirmed 

Response example JSON: 

{
       status: "success",
      data: {
             subscriber_uid: "ow305e5oat103",
             email: "teste@teste.com",
             taginternals: "testetag, tag2",
             status: "confirmed"
            }

}

Mailingboss is the one of the best module of builderall
If you need any help please feel free to comment. 

1 comment: