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": "88cfce48-039a-4fd9-b2d3-5a0c41c6d2df",
"ProjectSysID": "7268ef05-9758-4efb-b0a6-983eab897b9e",
"Quantity": 4,
"UnitSysID": "75bad0c2-e33b-486a-a099-2e3bfe761010"
}
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>88cfce48-039a-4fd9-b2d3-5a0c41c6d2df</MaterialSysID> <ProjectSysID>7268ef05-9758-4efb-b0a6-983eab897b9e</ProjectSysID> <Quantity>4</Quantity> <UnitSysID>75bad0c2-e33b-486a-a099-2e3bfe761010</UnitSysID> </mlcreatebudget>
response Information
Resource description
ApiResponse| Name | description | Type | Additional information |
|---|---|---|---|
| response | string |
Required |
|
| failure | MlError |
None. |
|
| success | MlSuccess |
None. |