GET api/userbadges
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of userbadge| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| userId | string |
None. |
|
| badgeId | integer |
None. |
|
| tStamp | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"userId": "sample string 2",
"badgeId": 3,
"tStamp": "2025-12-18T07:25:13.4543257+02:00"
},
{
"id": 1,
"userId": "sample string 2",
"badgeId": 3,
"tStamp": "2025-12-18T07:25:13.4543257+02:00"
}
]
application/xml, text/xml
Sample:
<ArrayOfuserbadge xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/waytoodankapi.Models">
<userbadge>
<badgeId>3</badgeId>
<id>1</id>
<tStamp>2025-12-18T07:25:13.4543257+02:00</tStamp>
<userId>sample string 2</userId>
</userbadge>
<userbadge>
<badgeId>3</badgeId>
<id>1</id>
<tStamp>2025-12-18T07:25:13.4543257+02:00</tStamp>
<userId>sample string 2</userId>
</userbadge>
</ArrayOfuserbadge>