# revokeFlowOperatorPermissions

Revokes all [ACL permissions](https://superfluid.gitbook.io/superfluid/developers/constant-flow-agreement-cfa/cfa-access-control-list-acl) that an account has over the caller's account for streams of a certain Super Token.

```javascript
//load the token you'd like to use like this 
//note that tokens may be loaded by symbol or by address
const daix = await sf.loadSuperToken("DAIx");

let flowOp = daix.revokeFlowOperatorPermissions({
  flowOperator: string
});

await flowOp.exec( <<ethers signer>> );
```

### Parameters

<table><thead><tr><th width="182">Parameter</th><th width="231.33333333333331">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>flowOperator</code></td><td><code>string</code></td><td>Address of the account whose ACL permissions the caller is revoking</td></tr></tbody></table>

### Example Usage

<https://codesandbox.io/s/revoke-flow-permissions-example-ednt8t?from-embed=&file=/src/RevokeFlowPermissions.js:767-851>
