Connection Management

Initiate a new SignalR connection to the event hub

SecurityOAuth2 or ApiKey
Request
Request Body schema: application/json

Initiate a new SignalR connection to the event hub

Array of objects (FilterChain)

All filters in this array are compared with a logical OR operation, while all filters listed as children objects within each filter are compared with a logical 'AND'.

Responses
200

Response success

400

Malformed request.

401

Unauthorized access, invalid credentials were used.

403

Access forbidden. Current token does not have the necessary authority for the operation.

422

Invalid data was sent.

post/events/connections
Request samples
application/json
{
  • "Filters": [
    ]
}
Response samples
application/json
{
  • "EndpointID": "3F2504E0-4F89-11D3-9A0C-0305E82C3301",
  • "HubInfo": {
    }
}

Update the message filter associated with the specified EndpointID

SecurityOAuth2 or ApiKey
Request
path Parameters
EndpointID
required
string

ID of the endpoint

Request Body schema: application/json

Update connection properties of a SignalR connection

Array of objects (FilterChain)

All filters in this array are compared with a logical OR operation, while all filters listed as children objects within each filter are compared with a logical 'AND'.

Responses
200

Response success

400

Malformed request.

401

Unauthorized access, invalid credentials were used.

403

Access forbidden. Current token does not have the necessary authority for the operation.

422

Invalid data was sent.

put/events/connections/{EndpointID}
Request samples
application/json
{
  • "Filters": [
    ]
}
Response samples
application/json
{
  • "EndpointID": "3F2504E0-4F89-11D3-9A0C-0305E82C3301",
  • "HubInfo": {
    }
}