Skip to main content

ACP Routing Options

ACP lets you control where orders are routed using the routing object on the request.

Default (Full Integration)

{
  "routing": {
    "sendToFulfillment": true,
    "sendToErp": true,
    "createInStateset": true
  }
}

Fulfillment Only

{
  "routing": {
    "sendToFulfillment": true,
    "sendToErp": false,
    "createInStateset": true
  }
}

Record Only

{
  "routing": {
    "sendToFulfillment": false,
    "sendToErp": false,
    "createInStateset": true
  }
}

Specific Fulfillment Provider

{
  "routing": {
    "fulfillmentProvider": "dcl",
    "dclLocation": "LA"
  }
}