mirror of https://github.com/dapr/docs.git
Improve bulk subscribe statuses description
Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com>
This commit is contained in:
parent
9109e7f065
commit
03a0ed26c5
|
@ -313,10 +313,17 @@ A JSON-encoded payload body with the processing status against each entry needs
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"statuses": {
|
"statuses":
|
||||||
"entryId": "<entryId>",
|
[
|
||||||
|
{
|
||||||
|
"entryId": "<entryId1>",
|
||||||
"status": "<status>"
|
"status": "<status>"
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"entryId": "<entryId2>",
|
||||||
|
"status": "<status>"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -334,7 +341,7 @@ Please refer [Expected HTTP Response for Bulk Subscribe]({{< ref pubsub_api.md >
|
||||||
|
|
||||||
Please refer following code samples for how to use Bulk Subscribe:
|
Please refer following code samples for how to use Bulk Subscribe:
|
||||||
|
|
||||||
{{< tabs "Java" "JavaScript" ".NET" "HTTP API (Bash)" "HTTP API (PowerShell)" >}}
|
{{< tabs "Java" "JavaScript" ".NET" >}}
|
||||||
|
|
||||||
{{% codetab %}}
|
{{% codetab %}}
|
||||||
|
|
||||||
|
|
|
@ -262,10 +262,17 @@ A JSON-encoded payload body with the processing status against each entry needs
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"statuses": {
|
"statuses":
|
||||||
"entryId": "<entryId>",
|
[
|
||||||
|
{
|
||||||
|
"entryId": "<entryId1>",
|
||||||
"status": "<status>"
|
"status": "<status>"
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"entryId": "<entryId2>",
|
||||||
|
"status": "<status>"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue