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": "6e23bf4d-8c3a-40a4-9414-37aa6ce8512e",
"ProjectSysID": "49ad9d42-9f06-4d07-ba75-cee85d03e263",
"Quantity": 4,
"UnitSysID": "fb05039c-df1a-411a-9381-649879d7a7da"
}
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>6e23bf4d-8c3a-40a4-9414-37aa6ce8512e</MaterialSysID> <ProjectSysID>49ad9d42-9f06-4d07-ba75-cee85d03e263</ProjectSysID> <Quantity>4</Quantity> <UnitSysID>fb05039c-df1a-411a-9381-649879d7a7da</UnitSysID> </mlcreatebudget>
response Information
Resource description
ApiResponse| Name | description | Type | Additional information |
|---|---|---|---|
| response | string |
Required |
|
| failure | MlError |
None. |
|
| success | MlSuccess |
None. |