1. Amasty\Customform\Api\AnswerRepositoryInterface - class for managing form answers:
- POST /V1/amasty_customform/answer, method="save" - create an answer;
- PUT /V1/amasty_customform/answer/:answerId, method="save" - edit an answer;
- DELETE /V1/amasty_customform/answer/:answerId, method="deleteById" - delete an answer;
- GET /V1/amasty_customform/answer, method="get" - get information about an answer;
- GET /V1/amasty_customform/answer/all, method="getList" - get a list with all answers;
- GET /V1/amasty_customform/answer/list_filter, method="getListFilter" - get a list with filtered answers.
2. Amasty\Customform\Api\FormRepositoryInterface - class for managing forms:
- POST /V1/amasty_customform/form, method="save" - create a form;
- PUT /V1/amasty_customform/form/:formId, method="save" - edit a form;
- DELETE /V1/amasty_customform/form/:formId, method="deleteById" -delete a form;
- GET /V1/amasty_customform/form, method="get" - get information about a form;
- GET /V1/amasty_customform/form/all, method="getList" - get a list with all forms.