GET api/customdata/ncsy/GetDeletedSessionAssignments?startDate={startDate}&endDate={endDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| startDate | date |
Required |
|
| endDate | date |
None. |
Body Parameters
None.
Response Information
Resource Description
WebMethodResultOfListOfDeletedSessionAssignments| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | Collection of DeletedSessionAssignments |
None. |
|
| Success | boolean |
None. |
|
| ErrorText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": [
{
"PersonID": 1,
"LoginEmail": "sample string 2",
"Sessions": [
{
"SeasonID": 1,
"SessionID": 2,
"SessionName": "sample string 3"
},
{
"SeasonID": 1,
"SessionID": 2,
"SessionName": "sample string 3"
}
]
},
{
"PersonID": 1,
"LoginEmail": "sample string 2",
"Sessions": [
{
"SeasonID": 1,
"SessionID": 2,
"SessionName": "sample string 3"
},
{
"SeasonID": 1,
"SessionID": 2,
"SessionName": "sample string 3"
}
]
}
],
"Success": true,
"ErrorText": "sample string 2"
}
application/javascript
Sample:
{"Result":[{"PersonID":1,"LoginEmail":"sample string 2","Sessions":[{"SeasonID":1,"SessionID":2,"SessionName":"sample string 3"},{"SeasonID":1,"SessionID":2,"SessionName":"sample string 3"}]},{"PersonID":1,"LoginEmail":"sample string 2","Sessions":[{"SeasonID":1,"SessionID":2,"SessionName":"sample string 3"},{"SeasonID":1,"SessionID":2,"SessionName":"sample string 3"}]}],"Success":true,"ErrorText":"sample string 2"}
application/xml, text/xml
Sample:
<WebMethodResultOfListOfDeletedSessionAssignments xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Success>true</Success>
<ErrorText>sample string 2</ErrorText>
<Result>
<DeletedSessionAssignments>
<PersonID>1</PersonID>
<LoginEmail>sample string 2</LoginEmail>
<Sessions>
<NCSYSession>
<SeasonID>1</SeasonID>
<SessionID>2</SessionID>
<SessionName>sample string 3</SessionName>
</NCSYSession>
<NCSYSession>
<SeasonID>1</SeasonID>
<SessionID>2</SessionID>
<SessionName>sample string 3</SessionName>
</NCSYSession>
</Sessions>
</DeletedSessionAssignments>
<DeletedSessionAssignments>
<PersonID>1</PersonID>
<LoginEmail>sample string 2</LoginEmail>
<Sessions>
<NCSYSession>
<SeasonID>1</SeasonID>
<SessionID>2</SessionID>
<SessionName>sample string 3</SessionName>
</NCSYSession>
<NCSYSession>
<SeasonID>1</SeasonID>
<SessionID>2</SessionID>
<SessionName>sample string 3</SessionName>
</NCSYSession>
</Sessions>
</DeletedSessionAssignments>
</Result>
</WebMethodResultOfListOfDeletedSessionAssignments>