MagickMind

Centrifugo connect proxy (server-to-server, proxy-secret authenticated)

POST
/v1/centrifugo/connect

Authorization

ProxySecretAuth
X-Bifrost-Proxy-Secret<token>

Shared secret presented by the Centrifugo proxy (server-to-server only).

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/v1/centrifugo/connect" \  -H "Content-Type: application/json" \  -d '{    "client": "string",    "encoding": "string",    "protocol": "string",    "transport": "string"  }'
{  "disconnect": {    "code": 0,    "reason": "string"  },  "error": {    "code": 0,    "message": "string"  },  "result": {    "channels": [      "string"    ],    "expire_at": 0,    "meta": {      "property1": "string",      "property2": "string"    },    "user": "string"  }}