Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.stateset.com/llms.txt

Use this file to discover all available pages before exploring further.

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"
  }
}