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": "ca66ae8a-7ad4-457e-a8ba-33fc2591c3e1",
"UserID": "1f9e97fb-32c6-4b93-8d34-f3577c379a8c",
"CallbackURL": "sample string 4",
"RenewDelay": 5,
"RenewAttempts": 6,
"RenewSuccess": true,
"TargetDate": "2026-02-20T15:50:47.0689283+01:00",
"RenewDate": "2026-02-20T15:50:47.0689283+01:00",
"CreateDate": "2026-02-20T15:50:47.0689283+01:00",
"ModifiedDate": "2026-02-20T15:50:47.0689283+01:00",
"Status": {
"Code": 0,
"Text": "sample string 1"
}
}
text/javascript
Sample:
{"ID":1,"VendorKey":"ca66ae8a-7ad4-457e-a8ba-33fc2591c3e1","UserID":"1f9e97fb-32c6-4b93-8d34-f3577c379a8c","CallbackURL":"sample string 4","RenewDelay":5,"RenewAttempts":6,"RenewSuccess":true,"TargetDate":"2026-02-20T15:50:47.0689283+01:00","RenewDate":"2026-02-20T15:50:47.0689283+01:00","CreateDate":"2026-02-20T15:50:47.0689283+01:00","ModifiedDate":"2026-02-20T15:50:47.0689283+01: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-02-20T15:50:47.0689283+01:00</CreateDate>
<ID>1</ID>
<ModifiedDate>2026-02-20T15:50:47.0689283+01:00</ModifiedDate>
<RenewAttempts>6</RenewAttempts>
<RenewDate>2026-02-20T15:50:47.0689283+01:00</RenewDate>
<RenewDelay>5</RenewDelay>
<RenewSuccess>true</RenewSuccess>
<TargetDate>2026-02-20T15:50:47.0689283+01:00</TargetDate>
<UserID>1f9e97fb-32c6-4b93-8d34-f3577c379a8c</UserID>
<VendorKey>ca66ae8a-7ad4-457e-a8ba-33fc2591c3e1</VendorKey>
</PaymentTrial>