FrontendRoutes

Returns the frontend base URL and route templates keyed by entity name. Templates contain the literal placeholder `{id}` which the consumer substitutes with the entity Guid.

GET
/Frontend/routes
AuthorizationBearer <token>

JWT Authorization header using Bearer scheme

In: header

Response Body

application/json

curl -X GET "https://api.speaknode.com/api/Frontend/routes"
{
  "base_url": "string",
  "templates": {
    "property1": "string",
    "property2": "string"
  }
}