Abandoned Cart Email API

Abandoned Cart Email API

1. Amasty\Acart\Api\BlacklistRepositoryInterface - class for managing blacklist data.
  1. GET /V1/amasty_acart/blacklist/:id, method="getById" - get a blacklist entry by ID;
  2. GET /V1/amasty_acart/blacklist/getByCustomerEmail/:customerEmail, method="getByCustomerEmail" - get a blacklist entry by customer email address;
  3. GET /V1/amasty_acart/blacklist/all, method="getList" - get a list of all blacklist entries;
  4. POST /V1/amasty_acart/blacklist, method="save" - add email to a blacklist;
  5. PUT /V1/amasty_acart/blacklist/:id, method="save" - edit a blacklisted email;
  6. DELETE /V1/amasty_acart/blacklist/:id, method="deleteById" - delete an email from blacklist.

      • Related Articles

      • What Amasty extensions support API?

        Each Amasty extension that has API support, includes the etc/webapi.xml file. The webapi.xml file contains API configurations with the list of available API requests. For example, a request from the Custom Form module interface: 1 - endpoint URL; 2 - ...
      • Gift Card API

        1. Amasty\GiftCard\Api\ImageRepositoryInterface - class for managing gift card images: POST /V1/amgcard/image, method="save" - save a gift card image; PUT /V1/amgcard/image/:id, method="save" - save a gift card image by ID; DELETE ...
      • Request a Quote API

        1. Amasty\RequestQuote\Api\RemarkServiceInterface: PUT /V1/amasty_quote/updateRemark, method="save" - add information to the Remark field. 2. Amasty\RequestQuote\Api\QuoteRepositoryInterface - class for managing quotes: PUT ...
      • Extra Fee API

        1. Amasty\Extrafee\Api\TotalsInformationManagementInterface - class for managing cart totals for logged-in users: POST /V1/amasty_extrafee/carts/:cartId/totals-information, method="calculate" - calculate totals of a specific cart; POST ...
      • Exit Intent Popup API

        Amasty\ExitPopup\Api\EmailManagementInterface - class for managing emails: POST /V1/ampopup/sendEmail, method="sendEmail" - send a promotion email to a customer.