GET api/me/products
Gives you a list of your owned products
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of products
Collection of ProductDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
Product ID |
integer |
None. |
| Name |
Product name |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Name": "sample string 2"
},
{
"ID": 1,
"Name": "sample string 2"
}
]