# diagrid app access revoke

Revoke a caller's access to invoke an App

```
diagrid app access revoke <app> [flags]
```

### Examples

```

  # Remove order-api's access rule (it falls back to the default action).
  diagrid app access revoke my-app --project my-project --caller order-api

  # Remove multiple callers at once.
  diagrid app access revoke my-app --project my-project --callers order-api,payment-svc

  # Reset the default action to deny.
  diagrid app access revoke my-app --project my-project --caller '*'

```

### Options

```
  -p, --project string    Name of existing project
      --caller string     ID of a single caller to revoke (use '*' to reset the default action to deny)
      --callers strings   Comma-separated caller IDs to revoke
  -w, --wait              Wait for long-running resource update to finish
      --approve           Skip confirmation prompt
  -y, --yes               Skip confirmation prompt
  -h, --help              help for revoke
```

### Options inherited from parent commands

```
      --api-key string   Diagrid Cloud API key
```

### SEE ALSO

- [diagrid app access](./access.md)	 - Manage which callers may invoke an App
