I have the following data array from a API.
[
{
"barCode": "31568308949"
"itemDesc": "ASHTON-250"
"permPrice": 19.99
}
]
And expected result as below.
[
{
"Bar Code": "31568308949"
"Item Description": "ASHTON-250"
"Prem Price": 19.99
}
]
Could anybody help me to achieve this. Thanks in advance.