GET api/CustScheduler/GetCustMachineProjectMapping
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CustMachineProjectMapping| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FK_CustMachineId | integer |
None. |
|
| FK_CustProjectId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"FK_CustMachineId": 2,
"FK_CustProjectId": 3
},
{
"Id": 1,
"FK_CustMachineId": 2,
"FK_CustProjectId": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfCustMachineProjectMapping xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudInteractionBridge.DataClasses">
<CustMachineProjectMapping>
<FK_CustMachineId>2</FK_CustMachineId>
<FK_CustProjectId>3</FK_CustProjectId>
<Id>1</Id>
</CustMachineProjectMapping>
<CustMachineProjectMapping>
<FK_CustMachineId>2</FK_CustMachineId>
<FK_CustProjectId>3</FK_CustProjectId>
<Id>1</Id>
</CustMachineProjectMapping>
</ArrayOfCustMachineProjectMapping>