public async Task <IActionResult> GetAccount( [FromRoute] Guid organizationId, [FromRoute] int accountId ) { var account = await _accountService.GetAccount <CustomerCustomerAccountDetailsOutput>(_customer, accountId); return(Ok(account)); }