I am returning a JSON payload from the ServiceNow API via a query using Postman. Currently, the name of the fields in the result are the field names from the ServiceNow table. Is there a way to "rename" the field to something different.
For instance: Original:
{
"result": [
{
"phone": "123-456-7890",
"user_name": "micmou",
"name": "Mickey Mouse"
}
]
}
What I want:
{
"result": [
{
"phone_number": "123-456-7890",
"id": "micmou",
"full_name": "Mickey Mouse"
}
]
}