Improve bulk subscribe statuses description

Signed-off-by: Deepanshu Agarwal <deepanshu.agarwal1984@gmail.com>
This commit is contained in:
Deepanshu Agarwal 2023-04-13 15:17:40 +05:30
parent 9109e7f065
commit 03a0ed26c5
2 changed files with 21 additions and 7 deletions

View File

@ -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 %}}

View File

@ -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>"
}
]
} }
``` ```