> For the complete documentation index, see [llms.txt](https://superfluid.gitbook.io/superfluid/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://superfluid.gitbook.io/superfluid/developers/constant-flow-agreement-cfa/cfa-access-control-list-acl/solidity/deleteflowfrom.md).

# deleteFlowFrom

Delete a flow on behalf of a certain sender account using [ACL permissions](/superfluid/developers/constant-flow-agreement-cfa/cfa-access-control-list-acl.md)

#### Function Header

```solidity
/**
* @dev Deletes flow as an operator without userData
* @param token The token to flow
* @param sender The sender of the flow
* @param receiver The receiver of the flow
*/
function deleteFlowFrom(
   ISuperToken token,
   address sender,
   address receiver
) internal returns (bool)
```

#### Example Usage

{% embed url="<https://github.com/superfluid-finance/super-examples/blob/0b90a34602dc9cab4a10ac59aefebef1bf5384cd/projects/money-streaming-intro/money-streaming-intro-hardhat/contracts/MoneyRouter.sol#L95>" %}
