GET api/GetSubscribedExamsByUserId?Uid={Uid}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Uid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SubscribedExamsModelName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
Category_Id | integer |
None. |
|
User_Id | integer |
None. |
|
Category_Name | string |
None. |
|
Remaining | integer |
None. |
|
Pack_Id | integer |
None. |
|
TotalAtempts | integer |
None. |
|
Status | boolean |
None. |
|
SubscribeCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "Category_Id": 1, "User_Id": 1, "Category_Name": "sample string 2", "Remaining": 1, "Pack_Id": 1, "TotalAtempts": 1, "Status": true, "SubscribeCount": 3 }, { "Id": 1, "Category_Id": 1, "User_Id": 1, "Category_Name": "sample string 2", "Remaining": 1, "Pack_Id": 1, "TotalAtempts": 1, "Status": true, "SubscribeCount": 3 } ]
application/xml, text/xml
Sample:
<ArrayOfSubscribedExamsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VullamAPIProject.Models"> <SubscribedExamsModel> <Category_Id>1</Category_Id> <Category_Name>sample string 2</Category_Name> <Id>1</Id> <Pack_Id>1</Pack_Id> <Remaining>1</Remaining> <Status>true</Status> <SubscribeCount>3</SubscribeCount> <TotalAtempts>1</TotalAtempts> <User_Id>1</User_Id> </SubscribedExamsModel> <SubscribedExamsModel> <Category_Id>1</Category_Id> <Category_Name>sample string 2</Category_Name> <Id>1</Id> <Pack_Id>1</Pack_Id> <Remaining>1</Remaining> <Status>true</Status> <SubscribeCount>3</SubscribeCount> <TotalAtempts>1</TotalAtempts> <User_Id>1</User_Id> </SubscribedExamsModel> </ArrayOfSubscribedExamsModel>