> ## 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

> Control fulfillment, ERP, and record creation behavior.

# ACP Routing Options

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

## Default (Full Integration)

```json theme={null}
{
  "routing": {
    "sendToFulfillment": true,
    "sendToErp": true,
    "createInStateset": true
  }
}
```

## Fulfillment Only

```json theme={null}
{
  "routing": {
    "sendToFulfillment": true,
    "sendToErp": false,
    "createInStateset": true
  }
}
```

## Record Only

```json theme={null}
{
  "routing": {
    "sendToFulfillment": false,
    "sendToErp": false,
    "createInStateset": true
  }
}
```

## Specific Fulfillment Provider

```json theme={null}
{
  "routing": {
    "fulfillmentProvider": "dcl",
    "dclLocation": "LA"
  }
}
```

## Related Documentation

* [ACP Request Schemas](/stateset-acp-schemas)
* [ACP Guide](/stateset-sync-server/ACP_GUIDE)
