POST api/material/createbudget
Create Budget
Request Information
URI Parameters
None.
Body Parameters
mlcreatebudget| Name | description | Type | Additional information |
|---|---|---|---|
| ProjectSysID | globally unique identifier |
None. |
|
| MaterialSysID | globally unique identifier |
None. |
|
| UnitSysID | globally unique identifier |
None. |
|
| Quantity | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"MaterialSysID": "57a37e3a-a66f-4c19-b591-b52aa3519bc9",
"ProjectSysID": "8e5ba6b4-c641-4251-a1b2-f018105c1bd8",
"Quantity": 4,
"UnitSysID": "30a9a1b3-3539-49af-886a-7822e944f56e"
}
application/xml, text/xml
Sample:
<mlcreatebudget xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Systemic.MLM.Model.Material"> <MaterialSysID>57a37e3a-a66f-4c19-b591-b52aa3519bc9</MaterialSysID> <ProjectSysID>8e5ba6b4-c641-4251-a1b2-f018105c1bd8</ProjectSysID> <Quantity>4</Quantity> <UnitSysID>30a9a1b3-3539-49af-886a-7822e944f56e</UnitSysID> </mlcreatebudget>
response Information
Resource description
ApiResponse| Name | description | Type | Additional information |
|---|---|---|---|
| response | string |
Required |
|
| failure | MlError |
None. |
|
| success | MlSuccess |
None. |