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": "4de8428e-7d11-40b5-80b9-41011c990d6e",
"UserID": "7d4b4465-b0fc-41ef-ac5c-1a0e5ea898f2",
"CallbackURL": "sample string 4",
"RenewDelay": 5,
"RenewAttempts": 6,
"RenewSuccess": true,
"TargetDate": "2026-08-04T12:02:09.6305478+02:00",
"RenewDate": "2026-08-04T12:02:09.6305478+02:00",
"CreateDate": "2026-08-04T12:02:09.6305478+02:00",
"ModifiedDate": "2026-08-04T12:02:09.6305478+02:00",
"Status": {
"Code": 0,
"Text": "sample string 1"
}
}
text/javascript
Sample:
{"ID":1,"VendorKey":"4de8428e-7d11-40b5-80b9-41011c990d6e","UserID":"7d4b4465-b0fc-41ef-ac5c-1a0e5ea898f2","CallbackURL":"sample string 4","RenewDelay":5,"RenewAttempts":6,"RenewSuccess":true,"TargetDate":"2026-08-04T12:02:09.6305478+02:00","RenewDate":"2026-08-04T12:02:09.6305478+02:00","CreateDate":"2026-08-04T12:02:09.6305478+02:00","ModifiedDate":"2026-08-04T12:02:09.6305478+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-08-04T12:02:09.6305478+02:00</CreateDate>
<ID>1</ID>
<ModifiedDate>2026-08-04T12:02:09.6305478+02:00</ModifiedDate>
<RenewAttempts>6</RenewAttempts>
<RenewDate>2026-08-04T12:02:09.6305478+02:00</RenewDate>
<RenewDelay>5</RenewDelay>
<RenewSuccess>true</RenewSuccess>
<TargetDate>2026-08-04T12:02:09.6305478+02:00</TargetDate>
<UserID>7d4b4465-b0fc-41ef-ac5c-1a0e5ea898f2</UserID>
<VendorKey>4de8428e-7d11-40b5-80b9-41011c990d6e</VendorKey>
</PaymentTrial>