GET api/MSSReport/GetOnsiteStaff?q={q}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| q | string |
Required |
Body Parameters
None.
Response Information
Resource Description
AsapResponseOfListOfOnsiteStaffDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| isSuccess | boolean |
None. |
|
| message | string |
None. |
|
| jsonObj | Collection of OnsiteStaffDTO |
None. |
|
| totalCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSuccess": true,
"message": "sample string 2",
"jsonObj": [
{
"UserId": 1,
"UserType": 64,
"LastName": "Sample String 3",
"FirstName": "Sample String 4",
"ValidFlag": true,
"UserIdentityId": 6,
"SubServiceId": 7,
"FullName": "Sample String 4 Sample String 3",
"CosSubService": "sample string 8"
},
{
"UserId": 1,
"UserType": 64,
"LastName": "Sample String 3",
"FirstName": "Sample String 4",
"ValidFlag": true,
"UserIdentityId": 6,
"SubServiceId": 7,
"FullName": "Sample String 4 Sample String 3",
"CosSubService": "sample string 8"
}
],
"totalCount": 3
}
application/xml, text/xml
Sample:
<AsapResponseOfArrayOfOnsiteStaffDTO3NYuOdgi xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common">
<isSuccess>true</isSuccess>
<jsonObj xmlns:d2p1="http://schemas.datacontract.org/2004/07/ASAP_BL.BL">
<d2p1:OnsiteStaffDTO>
<d2p1:CosSubService>sample string 8</d2p1:CosSubService>
<d2p1:FirstName>Sample String 4</d2p1:FirstName>
<d2p1:LastName>Sample String 3</d2p1:LastName>
<d2p1:SubServiceId>7</d2p1:SubServiceId>
<d2p1:UserId>1</d2p1:UserId>
<d2p1:UserIdentityId>6</d2p1:UserIdentityId>
<d2p1:UserType>64</d2p1:UserType>
<d2p1:ValidFlag>true</d2p1:ValidFlag>
</d2p1:OnsiteStaffDTO>
<d2p1:OnsiteStaffDTO>
<d2p1:CosSubService>sample string 8</d2p1:CosSubService>
<d2p1:FirstName>Sample String 4</d2p1:FirstName>
<d2p1:LastName>Sample String 3</d2p1:LastName>
<d2p1:SubServiceId>7</d2p1:SubServiceId>
<d2p1:UserId>1</d2p1:UserId>
<d2p1:UserIdentityId>6</d2p1:UserIdentityId>
<d2p1:UserType>64</d2p1:UserType>
<d2p1:ValidFlag>true</d2p1:ValidFlag>
</d2p1:OnsiteStaffDTO>
</jsonObj>
<message>sample string 2</message>
<totalCount>3</totalCount>
</AsapResponseOfArrayOfOnsiteStaffDTO3NYuOdgi>