mirror of https://github.com/dapr/docs.git
Merge branch 'v1.1' into fix-link-pubsub-content-types
This commit is contained in:
commit
6a86f6536a
|
@ -80,7 +80,7 @@ All that's left now is to invoke the output bindings endpoint on a running Dapr
|
|||
You can do so using HTTP:
|
||||
|
||||
```bash
|
||||
curl -X POST -H http://localhost:3500/v1.0/bindings/myevent -d '{ "data": { "message": "Hi!" }, "operation": "create" }'
|
||||
curl -X POST -H 'Content-Type: application/json' http://localhost:3500/v1.0/bindings/myevent -d '{ "data": { "message": "Hi!" }, "operation": "create" }'
|
||||
```
|
||||
|
||||
As seen above, you invoked the `/binding` endpoint with the name of the binding to invoke, in our case its `myevent`.
|
||||
|
|
Loading…
Reference in New Issue