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": "8fc380f1-01dd-4255-92fc-c66c1cc34277",
"UserID": "62b20ad7-8ea1-40ea-9c47-5a3cdc79982b",
"CallbackURL": "sample string 4",
"RenewDelay": 5,
"RenewAttempts": 6,
"RenewSuccess": true,
"TargetDate": "2026-04-15T20:50:58.441552+02:00",
"RenewDate": "2026-04-15T20:50:58.441552+02:00",
"CreateDate": "2026-04-15T20:50:58.441552+02:00",
"ModifiedDate": "2026-04-15T20:50:58.441552+02:00",
"Status": {
"Code": 0,
"Text": "sample string 1"
}
}
text/javascript
Sample:
{"ID":1,"VendorKey":"8fc380f1-01dd-4255-92fc-c66c1cc34277","UserID":"62b20ad7-8ea1-40ea-9c47-5a3cdc79982b","CallbackURL":"sample string 4","RenewDelay":5,"RenewAttempts":6,"RenewSuccess":true,"TargetDate":"2026-04-15T20:50:58.441552+02:00","RenewDate":"2026-04-15T20:50:58.441552+02:00","CreateDate":"2026-04-15T20:50:58.441552+02:00","ModifiedDate":"2026-04-15T20:50:58.441552+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-04-15T20:50:58.441552+02:00</CreateDate>
<ID>1</ID>
<ModifiedDate>2026-04-15T20:50:58.441552+02:00</ModifiedDate>
<RenewAttempts>6</RenewAttempts>
<RenewDate>2026-04-15T20:50:58.441552+02:00</RenewDate>
<RenewDelay>5</RenewDelay>
<RenewSuccess>true</RenewSuccess>
<TargetDate>2026-04-15T20:50:58.441552+02:00</TargetDate>
<UserID>62b20ad7-8ea1-40ea-9c47-5a3cdc79982b</UserID>
<VendorKey>8fc380f1-01dd-4255-92fc-c66c1cc34277</VendorKey>
</PaymentTrial>