1. Amasty\MegaMenu\Api\LinkRepositoryInterface - class for managing links inside the menu:
- POST /V1/amasty_megaMenu/link, method="save" - create a link;
- PUT /V1/amasty_megaMenu/link/:entityId, method="save" - edit a link;
- DELETE /V1/amasty_megaMenu/link/:entityId, method="deleteById" - delete a link;
- GET /V1/amasty_megaMenu/link, method="getById" - get information about a link;
- GET /V1/amasty_megaMenu/link/all, method="getList" - get a list with all links.
2. Amasty\MegaMenu\Api\ItemRepositoryInterface - class for managing menu items:
- POST /V1/amasty_megaMenu/item, method="save" - create an item;
- PUT /V1/amasty_megaMenu/item/:entityId, method="save" - edit an item;
- DELETE /V1/amasty_megaMenu/item/:entityId, method="deleteById" - delete an item;
- GET /V1/amasty_megaMenu/item, method="getById" - get information about an item;
- GET /V1/amasty_megaMenu/item/all, method="getList" - get a list with all items.