Remove key from JSON object dictionary

Imagine I have a record I'm returning that looks like:
```
{
  id: 10,
  name: 'My record',
  creation_date: 123452435
}
```

How do I remove `creation_date` from the object?
Other
1 reply