public function withdrawFromPot(string $id, int $amount, ?string $account = null)
    {
        $results = $this->call('PUT', "pots/{$id}/withdraw", [], [
            'amount' => $amount,
            'destination_account_id' => $account ?? $this->getAccountId(),