I’m finding it really frustrating that the Organizations REST API returns a mix of camel and snake case responses, e.g.
{
"data": [
{
"account_id": "<string>",
"account_type": "atlassian",
"account_status": "active",
...
and
"data": [
{
"accountId": "12345678-1234-1234-1234-123456789012",
"accountType": "atlassian",
"accountStatus": "active",
...
This is pretty basic stuff - having coding standards for APIs you’d expect the results from the same API to be the same.