I would like to add some data and change the structure of an API response. Is their any service which supports this feature? So for example:
I have the following API response:
[
{"text-message": "Welcome to our store!"},
{"text-message": "How can I help you?"}
]
and I want to change it to:
[
{"text": "Welcome to our store!"},
{"text": "How can I help you?"}
]