GET api/mandate/trial/{userID}
V1 - Gets the specific trial for the provided userID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userID |
userID |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PaymentTrial| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| VendorKey | globally unique identifier |
None. |
|
| UserID | globally unique identifier |
None. |
|
| CallbackURL | string |
None. |
|
| RenewDelay | integer |
None. |
|
| RenewAttempts | integer |
None. |
|
| RenewSuccess | boolean |
None. |
|
| TargetDate | date |
None. |
|
| RenewDate | date |
None. |
|
| CreateDate | date |
None. |
|
| ModifiedDate | date |
None. |
|
| Status |
YindoApiStatus defines statuscodes. |
YindoApiStatus |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"VendorKey": "3aa847a2-8fdf-43dc-ace4-c364e8de6e5d",
"UserID": "47db4641-03ed-428c-b6a9-e7de95cebf31",
"CallbackURL": "sample string 4",
"RenewDelay": 5,
"RenewAttempts": 6,
"RenewSuccess": true,
"TargetDate": "2026-06-10T13:58:16.9944588+02:00",
"RenewDate": "2026-06-10T13:58:16.9944588+02:00",
"CreateDate": "2026-06-10T13:58:16.9944588+02:00",
"ModifiedDate": "2026-06-10T13:58:16.9944588+02:00",
"Status": {
"Code": 0,
"Text": "sample string 1"
}
}
text/javascript
Sample:
{"ID":1,"VendorKey":"3aa847a2-8fdf-43dc-ace4-c364e8de6e5d","UserID":"47db4641-03ed-428c-b6a9-e7de95cebf31","CallbackURL":"sample string 4","RenewDelay":5,"RenewAttempts":6,"RenewSuccess":true,"TargetDate":"2026-06-10T13:58:16.9944588+02:00","RenewDate":"2026-06-10T13:58:16.9944588+02:00","CreateDate":"2026-06-10T13:58:16.9944588+02:00","ModifiedDate":"2026-06-10T13:58:16.9944588+02:00","Status":{"Code":0,"Text":"sample string 1"}}
application/xml, text/xml
Sample:
<PaymentTrial 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>
<CallbackURL>sample string 4</CallbackURL>
<CreateDate>2026-06-10T13:58:16.9944588+02:00</CreateDate>
<ID>1</ID>
<ModifiedDate>2026-06-10T13:58:16.9944588+02:00</ModifiedDate>
<RenewAttempts>6</RenewAttempts>
<RenewDate>2026-06-10T13:58:16.9944588+02:00</RenewDate>
<RenewDelay>5</RenewDelay>
<RenewSuccess>true</RenewSuccess>
<TargetDate>2026-06-10T13:58:16.9944588+02:00</TargetDate>
<UserID>47db4641-03ed-428c-b6a9-e7de95cebf31</UserID>
<VendorKey>3aa847a2-8fdf-43dc-ace4-c364e8de6e5d</VendorKey>
</PaymentTrial>