Get realtime DB node/subtree
GET/realtime/db/:path
Returns the value stored at the given realtime DB path (subtree).
Request
Responses
- 200
- 401
- 403
- 404
- 422
Successful Response
Unauthorized
Forbidden
Not Found
Validation Error
Response shape
{
"path": "users/alice",
"value": {
"name": "Alice",
"status": "online"
}
}
cURL example
curl -X GET "https://mw-client-api.wonderfulcoast-218d579d.centralindia.azurecontainerapps.io/realtime/db/users/alice" \
-H "x-client-id: <client-id>" \
-H "x-client-secret: <client-secret>" \
-H "Authorization: Bearer <access-token>"