POST api/CustScheduler/CustMachineProjectMapping
Request Information
URI Parameters
None.
Body Parameters
CustMachineProjectMappingPostData| Name | Description | Type | Additional information |
|---|---|---|---|
| operationType | string |
None. |
|
| Id | integer |
None. |
|
| FK_CustMachineId | integer |
None. |
|
| FK_CustProjectId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"operationType": "sample string 1",
"Id": 2,
"FK_CustMachineId": 3,
"FK_CustProjectId": 4
}
application/xml, text/xml
Sample:
<CustMachineProjectMappingPostData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudInteractionBridge.DataClasses"> <FK_CustMachineId>3</FK_CustMachineId> <FK_CustProjectId>4</FK_CustProjectId> <Id>2</Id> <operationType>sample string 1</operationType> </CustMachineProjectMappingPostData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>