# Azure SignalR service with Serverless

**URL:** https://forum.serverless.com/t/azure-signalr-service-with-serverless/11355
**Category:** Serverless Framework
**Tags:** azure
**Created:** [May 5, 2020, 12:23pm UTC](https://forum.serverless.com/t/azure-signalr-service-with-serverless/11355 "2020-05-05T12:23:25Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![sergey](https://avatars.discourse-cdn.com/v4/letter/s/9fc348/32.png) [@sergey](https://forum.serverless.com/u/sergey)
#### Post date: [May 5, 2020, 12:23pm UTC](https://forum.serverless.com/t/azure-signalr-service-with-serverless/11355/1 "2020-05-05T12:23:25Z")

</div>

Is it possible at all? I’m trying to convert the following function.json to Serverless yml definition:

```auto
{
  "bindings": [
      {
          "authLevel": "function",
          "type": "httpTrigger",
          "direction": "in",
          "name": "req",
          "methods": ["get"]
      },
      {
          "type": "signalRConnectionInfo",
          "name": "connectionInfo",
          "hubName": "your-signalr-service-name",
          "connectionStringSetting": "connection-string",
          "direction": "in"
      }
  ]
}

```

The first event is pretty straightforward:

```auto
Web_SirnalRNegotiate:
  handler: src/handlers/web/negotiate
  events:
    - http: true
      x-azure-settings:
        route: web/{version}/negotiate
        methods:
          - GET
        authLevel: function

```

But how do I describe the second binding?
