If I have a React site with a .net REST backend, is t acceptable practice to use REST for non CRUD operations such as sending an email?
For further actions, you may consider blocking this person and/or reporting abuse
If I have a React site with a .net REST backend, is t acceptable practice to use REST for non CRUD operations such as sending an email?
For further actions, you may consider blocking this person and/or reporting abuse
Urlewicz Aicha -
Alex Roor -
Beaver Bridge -
ShaunTheGeek -
Top comments (2)
It is acceptable to create REST api for resources that you don't save to disk, but operate on. The keyword is the "resource" here. You will need to conceptualize it as a resource. For the email example, you can have a POST action for an "email" resource.
I was thinking the same thing. Thanks