Skip to content

Get Public Namespace Information

Retrieve public information about your namespace.


Overview

This endpoint returns the public details about your namespace, including its name, branding information, and configuration.

Method: GET
Endpoint:
/api/v1/namespaces/{namespaceId}/public

Replace {namespaceId} with the actual namespace identifier.


Request

Headers

http
Accept: application/json, text/plain, */*

Path Parameters

ParameterTypeRequiredDescription
namespaceIdstringThe unique identifier for the namespace

Response

json
{
  "namespace": {
    "id": "sample-namespace",
    "name": "sampleNamespace",
    "primaryColor": "#ce621e",
    "clientTerm": "clients",
    "isEnzCtaEnabled": "true",
    "logoUrl": "[link]",
    "tennantId": "sample-namespace-vwxyz",
    "namespaceType": "demo"
  }
}

Notes

  • This endpoint is publicly accessible and does not require authentication.
  • Used to fetch branding and configuration information for public-facing interfaces.