MagickMind

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

POST
/v1/centrifugo/rpc

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/rpc" \  -H "Content-Type: application/json" \  -d '{    "client": "string",    "data": {      "property1": "string",      "property2": "string"    },    "encoding": "string",    "method": "string",    "protocol": "string",    "transport": "string",    "user": "string"  }'
{  "error": {    "code": 0,    "message": "string"  },  "result": {    "data": "string"  }}