---
title: "SayHelloBidiStream"
url: "https://developer-acc.schiphol.nl/apis/greeter-grpc-api-1-public-acc/versions/bf4d59f8-9d51-4284-8e71-cb7aed525810/operations/SayHelloBidiStream"
---

> Full API specification: https://developer-acc.schiphol.nl/apis/greeter-grpc-api-1-public-acc/versions/bf4d59f8-9d51-4284-8e71-cb7aed525810.md

# SayHelloBidiStream

`POST` `/public.Greeter/SayHelloBidiStream`

Operation ID: `SayHelloBidiStream`

## Request body (required)

Content types: `application/json`

## Responses

- `200` - Bidi stream (mapped as array)

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Greeter gRPC API
  version: 1.0-acc
paths:
  /public.Greeter/SayHelloBidiStream:
    post:
      operationId: SayHelloBidiStream
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: "#/components/schemas/HelloRequest"
      responses:
        "200":
          description: Bidi stream (mapped as array)
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: "#/components/schemas/HelloReply"
components:
  schemas:
    HelloRequest:
      type: object
      properties:
        name:
          type: string
    HelloReply:
      type: object
      properties:
        message:
          type: string
```
