GET “/api/contacts”
Should be:
Code:
{
"total": "1",
"contacts": [
{
"id": 2,
...........
}
}
}
Actual:
Code:
{
"total": "1",
"contacts": {
"2": {
"id": 2,
...........
}
}
}