bdy sandbox endpoint

$bdy sandbox endpoint|ep [options] [command]

Manage sandbox endpoints

OPTIONS
-h, --help
display help for command
AVAILABLE COMMANDS
Add an endpoint. Target server must listen on 0.0.0.0, otherwise it will be unreachable
Delete an endpoint
Get endpoint details
List endpoints

Documentation for bdy v1.22.49

Last modified on May 19, 2026

Examples

## create http endpoint on port 80 (http server must listen on 0.0.0.0)
bdy sb ep create sandbox-identifier -e 80$
## create http server and serve files from sandbox directory
bdy sb ep create sandbox-identifier -s /path/to/dir$
## create tcp endpoint on port 22 with name (tcp server must listen on 0.0.0.0)
bdy sb ep create sandbox-identifier -t TCP -e 22 -n test$
## delete sandbox endpoint
bdy sb ep rm sandbox-identifier test$
## delete sandbox endpoint in another project and automatically confirm deletion
bdy sb ep rm sandbox-identifier test -p project -f$
## get sandbox endpoint
bdy sb ep get sandbox-identifier test$
## get sandbox endpoint in another project
bdy sb ep get sandbox-identifier test -p project$
## list sandbox endpoints
bdy sb ep ls sandbox-identifier$
## list sandbox endpoints in another project
bdy sb ep ls sandbox-identifier -p project$