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": "eae66e0e-a1f6-4cf5-b381-459bc564bed1",
"UserID": "505f52d7-6609-48d7-b117-0d6d527d5274",
"CustomerID": "sample string 4",
"TransactieID": "sample string 5",
"MandaatID": "sample string 6",
"Hook": "7f5e07b3-05be-4b56-877a-3e1118da832b",
"CreateDate": "2026-08-04T11:59:37.5794649+02:00",
"ModifiedDate": "2026-08-04T11:59:37.5794649+02:00",
"Status": {
"Code": 0,
"Text": "sample string 1"
}
}
text/javascript
Sample:
{"ID":1,"VendorKey":"eae66e0e-a1f6-4cf5-b381-459bc564bed1","UserID":"505f52d7-6609-48d7-b117-0d6d527d5274","CustomerID":"sample string 4","TransactieID":"sample string 5","MandaatID":"sample string 6","Hook":"7f5e07b3-05be-4b56-877a-3e1118da832b","CreateDate":"2026-08-04T11:59:37.5794649+02:00","ModifiedDate":"2026-08-04T11:59:37.5794649+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-04T11:59:37.5794649+02:00</CreateDate>
<CustomerID>sample string 4</CustomerID>
<Hook>7f5e07b3-05be-4b56-877a-3e1118da832b</Hook>
<ID>1</ID>
<MandaatID>sample string 6</MandaatID>
<ModifiedDate>2026-08-04T11:59:37.5794649+02:00</ModifiedDate>
<TransactieID>sample string 5</TransactieID>
<UserID>505f52d7-6609-48d7-b117-0d6d527d5274</UserID>
<VendorKey>eae66e0e-a1f6-4cf5-b381-459bc564bed1</VendorKey>
</PaymentMandate>