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": "2c405cb8-5376-4df1-8eb1-22deaf5f4f4f",
"ProjectSysID": "e7061d6c-3f8b-4a09-8760-21a717997e66",
"Quantity": 4,
"UnitSysID": "1e72140c-e825-4f28-a299-90bf90edd18a"
}
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>2c405cb8-5376-4df1-8eb1-22deaf5f4f4f</MaterialSysID> <ProjectSysID>e7061d6c-3f8b-4a09-8760-21a717997e66</ProjectSysID> <Quantity>4</Quantity> <UnitSysID>1e72140c-e825-4f28-a299-90bf90edd18a</UnitSysID> </mlcreatebudget>
response Information
Resource description
ApiResponse| Name | description | Type | Additional information |
|---|---|---|---|
| response | string |
Required |
|
| failure | MlError |
None. |
|
| success | MlSuccess |
None. |