bdy sandbox endpoint

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

Manage sandbox endpoints

OPTIONS
-h, --help
display help for command
AVAILABLE COMMANDS
Add an endpoint
Delete an endpoint
Get endpoint details
List endpoints

Documentation for bdy v1.20.0

Last modified on Apr 13, 2026

Examples

Create http endpoint on port 80
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
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$