Imports Line Item data to Droptime. Phases and Mixes will be children of the added
Parameters
Parameter | Type | Required | Notes |
---|---|---|---|
Job | string | True | |
Phases | Array of string | True | Once added, they will be child items of the current job in the JSON object |
Mixes | Array of string | True | Once added, they will be child items of the current job in the JSON object |
Customer | string | false | |
JobDesc | string | false | |
JobAddr | string | false |
Example Query
POST | https://api.droptime.net/API.aspx?Method=importViewpointItems&SessionID=123&SP=12345678 |
Sample JSON Input
[
{
"Job" : "TestMahJob",
"Phases" : ["TestMahPhase1", "TestMahPhase2"],
"Mixes" : ["TestMahMix1", "TestMahMix2"],
"Customer" : "TestMahCustomer",
"JobDesc" : "TestMahJobDesc",
"JobAddr" : "TestMahJobAddr"
}
]
JSON Response
{
"ErrorCode": 0,
"ErrorMessage": "Success",
"ItemResponses": "[]",
"Items": []
}
Resource Information
Response Format | JSON |
Request Type | POST |