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

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

# SayHello

`POST` `/public.Greeter/SayHello`

Operation ID: `SayHello`

## Request body (required)

Content types: `application/json`

## Responses

- `200` - OK

## OpenAPI definition

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