GET api/mandate/{hook}
V1 - Gets the specific mandate for the provided hook
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| hook |
hook |
globally unique identifier |
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": "e516cae3-f237-4fb8-b437-373a35de8f8f",
"UserID": "74bfc116-e012-4cde-a0a8-4f542281dbf8",
"CustomerID": "sample string 4",
"TransactieID": "sample string 5",
"MandaatID": "sample string 6",
"Hook": "cccfff7c-68d7-4d02-9109-28cc1582d495",
"CreateDate": "2026-04-15T20:46:53.4994099+02:00",
"ModifiedDate": "2026-04-15T20:46:53.4994099+02:00",
"Status": {
"Code": 0,
"Text": "sample string 1"
}
}
text/javascript
Sample:
{"ID":1,"VendorKey":"e516cae3-f237-4fb8-b437-373a35de8f8f","UserID":"74bfc116-e012-4cde-a0a8-4f542281dbf8","CustomerID":"sample string 4","TransactieID":"sample string 5","MandaatID":"sample string 6","Hook":"cccfff7c-68d7-4d02-9109-28cc1582d495","CreateDate":"2026-04-15T20:46:53.4994099+02:00","ModifiedDate":"2026-04-15T20:46:53.4994099+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-04-15T20:46:53.4994099+02:00</CreateDate>
<CustomerID>sample string 4</CustomerID>
<Hook>cccfff7c-68d7-4d02-9109-28cc1582d495</Hook>
<ID>1</ID>
<MandaatID>sample string 6</MandaatID>
<ModifiedDate>2026-04-15T20:46:53.4994099+02:00</ModifiedDate>
<TransactieID>sample string 5</TransactieID>
<UserID>74bfc116-e012-4cde-a0a8-4f542281dbf8</UserID>
<VendorKey>e516cae3-f237-4fb8-b437-373a35de8f8f</VendorKey>
</PaymentMandate>