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": "201202b0-b712-4d80-b555-57d196bab67e",
"UserID": "37c095a3-2f98-42db-bab9-00a9cf1e32a9",
"CustomerID": "sample string 4",
"TransactieID": "sample string 5",
"MandaatID": "sample string 6",
"Hook": "ade9e565-f594-47f3-ad2e-171250062d9b",
"CreateDate": "2026-06-10T13:53:22.2602064+02:00",
"ModifiedDate": "2026-06-10T13:53:22.2602064+02:00",
"Status": {
"Code": 0,
"Text": "sample string 1"
}
}
text/javascript
Sample:
{"ID":1,"VendorKey":"201202b0-b712-4d80-b555-57d196bab67e","UserID":"37c095a3-2f98-42db-bab9-00a9cf1e32a9","CustomerID":"sample string 4","TransactieID":"sample string 5","MandaatID":"sample string 6","Hook":"ade9e565-f594-47f3-ad2e-171250062d9b","CreateDate":"2026-06-10T13:53:22.2602064+02:00","ModifiedDate":"2026-06-10T13:53:22.2602064+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-06-10T13:53:22.2602064+02:00</CreateDate>
<CustomerID>sample string 4</CustomerID>
<Hook>ade9e565-f594-47f3-ad2e-171250062d9b</Hook>
<ID>1</ID>
<MandaatID>sample string 6</MandaatID>
<ModifiedDate>2026-06-10T13:53:22.2602064+02:00</ModifiedDate>
<TransactieID>sample string 5</TransactieID>
<UserID>37c095a3-2f98-42db-bab9-00a9cf1e32a9</UserID>
<VendorKey>201202b0-b712-4d80-b555-57d196bab67e</VendorKey>
</PaymentMandate>