GET vouchers/ucare/{userId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
UCareVoucherDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ReferenceCode | string |
None. |
|
| UserId | string |
None. |
|
| Balance | decimal number |
None. |
|
| DateCreated | date |
None. |
|
| Currency | string |
None. |
|
| IsActive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"ReferenceCode": "sample string 2",
"UserId": "sample string 3",
"Balance": 4.0,
"DateCreated": "2026-04-13T12:34:19.7425426+02:00",
"Currency": "sample string 6",
"IsActive": true
}
application/xml, text/xml
Sample:
<UCareVoucherDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UCareAPI.Models"> <Balance>4</Balance> <Currency>sample string 6</Currency> <DateCreated>2026-04-13T12:34:19.7425426+02:00</DateCreated> <Id>1</Id> <IsActive>true</IsActive> <ReferenceCode>sample string 2</ReferenceCode> <UserId>sample string 3</UserId> </UCareVoucherDto>