[BUG] Get Account does not return hold value

When I call List Accounts, my USD account returns the correct value for hold.value

                    {
			"uuid": "6870125e-b297-5ffc-896d-d03e85dd532d",
			"name": "USD Wallet",
			"currency": "USD",
			"available_balance": {
				"value": "23.1680000000000000",
				"currency": "USD"
			},
			"default": false,
			"active": true,
			"created_at": "2016-01-09T00:42:40.079Z",
			"updated_at": "2022-12-16T01:07:43.165Z",
			"deleted_at": null,
			"type": "ACCOUNT_TYPE_FIAT",
			"ready": false,
			"hold": {
				"value": "2.0120000000000000",
				"currency": "USD"
			}
		},

However, when I retrieve the same account using Get Account, the hold.value is 0:

{
	"account": {
		"uuid": "6870125e-b297-5ffc-896d-d03e85dd532d",
		"name": "USD Wallet",
		"currency": "USD",
		"available_balance": {
			"value": "22.1640000000000000",
			"currency": "USD"
		},
		"default": false,
		"active": true,
		"created_at": "2016-01-09T00:42:40.079Z",
		"updated_at": "2022-12-31T22:35:50.929Z",
		"deleted_at": null,
		"type": "ACCOUNT_TYPE_FIAT",
		"ready": false,
		"hold": {
			"value": "0.0",
			"currency": "USD"
		}
	}
}

The value of the field was correct last week.

1 Like

Hello @dan_armstrong, welcome to the Coinbase Cloud Developer forum! Thank you for taking an interest in trying out the Coinbase APIs. For the details regarding your concern, we will check on this for you with our team. We will get back to you once we have more information. Keep in touch!

1 Like

Hello @dan_armstrong! Thank you so much for patiently waiting while we look into this.

We would like to inform you that the issue you have reported has been fixed. You should be able to see the hold value being returned by the Get Account endpoint is now the same as the List Accounts endpoint.

Please reach out in the future if you need anything else.

1 Like