GET api/mandate/{customerID}
V1 - Gets the specific mandate for the provided customerID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerID |
customerID |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
PaymentMandate| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| VendorKey | globally unique identifier |
None. |
|
| UserID | globally unique identifier |
None. |
|
| CustomerID | string |
None. |
|
| TransactieID | string |
None. |
|
| MandaatID | string |
None. |
|
| Hook | globally unique identifier |
None. |
|
| CreateDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| Status |
YindoApiStatus defines statuscodes. |
YindoApiStatus |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"VendorKey": "b3c76592-77e0-48e5-8be9-cadd714a0da8",
"UserID": "78e7f3ae-225c-4662-a8fc-b8d75f0c19e2",
"CustomerID": "sample string 4",
"TransactieID": "sample string 5",
"MandaatID": "sample string 6",
"Hook": "f1b6d99f-e9e3-47bf-a2c5-52c56b339cde",
"CreateDate": "2026-08-04T12:00:46.6348552+02:00",
"ModifiedDate": "2026-08-04T12:00:46.6348552+02:00",
"Status": {
"Code": 0,
"Text": "sample string 1"
}
}
text/javascript
Sample:
{"ID":1,"VendorKey":"b3c76592-77e0-48e5-8be9-cadd714a0da8","UserID":"78e7f3ae-225c-4662-a8fc-b8d75f0c19e2","CustomerID":"sample string 4","TransactieID":"sample string 5","MandaatID":"sample string 6","Hook":"f1b6d99f-e9e3-47bf-a2c5-52c56b339cde","CreateDate":"2026-08-04T12:00:46.6348552+02:00","ModifiedDate":"2026-08-04T12:00:46.6348552+02:00","Status":{"Code":0,"Text":"sample string 1"}}
application/xml, text/xml
Sample:
<PaymentMandate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VersionedVendorApi.Models">
<Status xmlns="http://schemas.datacontract.org/2004/07/Yindo.BLL.API">
<Code>Success</Code>
<Text>sample string 1</Text>
</Status>
<CreateDate>2026-08-04T12:00:46.6348552+02:00</CreateDate>
<CustomerID>sample string 4</CustomerID>
<Hook>f1b6d99f-e9e3-47bf-a2c5-52c56b339cde</Hook>
<ID>1</ID>
<MandaatID>sample string 6</MandaatID>
<ModifiedDate>2026-08-04T12:00:46.6348552+02:00</ModifiedDate>
<TransactieID>sample string 5</TransactieID>
<UserID>78e7f3ae-225c-4662-a8fc-b8d75f0c19e2</UserID>
<VendorKey>b3c76592-77e0-48e5-8be9-cadd714a0da8</VendorKey>
</PaymentMandate>