Injects a request to the Platformatic runtime service. ``` bash $ platformatic inject -n runtime-name /hello -X POST -H "Content-Type: application/json" -d '{"key": "value"}' ``` Options: * `-p, --pid ` - The process `id` of the runtime. * `-n, --name ` - The name of the runtime. * `-s, --service ` - The name of the runtime service. * `-X, --request ` - The request HTTP method. Default is `GET`. * `-H, --header ` - The request header. Can be used multiple times. * `-d, --data ` - The request data. * `-i, --include ` - Include the response headers in the output. Default is `false`. * `-v, --verbose ` - Make the operation more talkative. Default is `false`. * `-o, --output ` - Write the response to the specified file. The `inject` command sends a request to the runtime service and prints the response to the standard output. If the `--service` option is not specified the request is sent to the runtime entry point. The `inject` command uses the Platformatic Runtime Management API. To enable it set the `managementApi` option to `true` in the runtime configuration file. To get the list of runtimes with enabled management API use the `platformatic ctl ps` command.