We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edafecc commit 0ba9911Copy full SHA for 0ba9911
src/Picqer/Financials/Moneybird/Entities/Contact.php
@@ -45,6 +45,7 @@ class Contact extends Model
45
'tax_number',
46
'chamber_of_commerce',
47
'bank_account',
48
+ 'moneybird_payments_mandate',
49
'send_invoices_to_attention',
50
'send_invoices_to_email',
51
'send_estimates_to_attention',
@@ -112,4 +113,14 @@ public function findByCustomerId($customerId)
112
113
114
return $this->makeFromResponse($result);
115
}
116
+
117
+ /**
118
+ * @throws ApiException
119
+ */
120
+ public function getPaymentsMandate(): array
121
+ {
122
+ return $this->connection()->get(
123
+ $this->getEndpoint() . '/' . $this->id . '/moneybird_payments_mandate'
124
+ );
125
+ }
126
0 commit comments