1. Docs
  2. arrow-right
  3. Data Pull Overview
  4. arrow-right
  5. Manual Runs

Manual Runs

Manual Runs

You can manually run an integration task using ItemPath, which can be helpful for creating records as needed. To do this, you will need the JSON data that would be typically be pulled from the system that Data Pull will connected with. Enter the JSON into the text box, then select Run

You will receive the result message beneath the API endpoint. For example, entering the following JSON body can be used with an Order creation integration:

{
  "name": "Example Put Order",
  "directionType": "1",
  "allocate": false,
  "order_lines":[
      {
        "materialId": "8395D795-EA64-49EA-BFEE-708F4E5B2700",
        "batchName": "0000205856",
        "quantity": 1,
        "Info1": "PC",
        "serialNumber": "0000205856"
      }
    ]
}
 Item Path data pull manual run

If you would rather conduct a manual run using your own client, the URL for this integration's endpoint is available beneath the text box. Send a JSON POST request to that URL with an access token in the header for authentication.