GET api/ERP/Jobs/GetJobCrewList?JobID={JobID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| JobID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CrewType| Name | Description | Type | Additional information |
|---|---|---|---|
| CrewID | integer |
None. |
|
| JobID | integer |
None. |
|
| RoleID | integer |
None. |
|
| RoleName | string |
None. |
|
| CrewMemberName | string |
None. |
|
| IsBillable | boolean |
None. |
|
| string |
None. |
||
| EmpID | integer |
None. |
|
| AllowNotification | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CrewID": 1,
"JobID": 2,
"RoleID": 3,
"RoleName": "sample string 4",
"CrewMemberName": "sample string 5",
"IsBillable": true,
"Email": "sample string 7",
"EmpID": 8,
"AllowNotification": true
},
{
"CrewID": 1,
"JobID": 2,
"RoleID": 3,
"RoleName": "sample string 4",
"CrewMemberName": "sample string 5",
"IsBillable": true,
"Email": "sample string 7",
"EmpID": 8,
"AllowNotification": true
}
]
application/xml, text/xml
Sample:
<ArrayOfDataTypes.CrewType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appsvc.rapidappsinc.com.Areas.ERP">
<DataTypes.CrewType>
<AllowNotification>true</AllowNotification>
<CrewID>1</CrewID>
<CrewMemberName>sample string 5</CrewMemberName>
<Email>sample string 7</Email>
<EmpID>8</EmpID>
<IsBillable>true</IsBillable>
<JobID>2</JobID>
<RoleID>3</RoleID>
<RoleName>sample string 4</RoleName>
</DataTypes.CrewType>
<DataTypes.CrewType>
<AllowNotification>true</AllowNotification>
<CrewID>1</CrewID>
<CrewMemberName>sample string 5</CrewMemberName>
<Email>sample string 7</Email>
<EmpID>8</EmpID>
<IsBillable>true</IsBillable>
<JobID>2</JobID>
<RoleID>3</RoleID>
<RoleName>sample string 4</RoleName>
</DataTypes.CrewType>
</ArrayOfDataTypes.CrewType>