Skip to main content
GET
/
v1
/
models
/
{modelId}
/
topic
/
{topicName}
Get topic
curl --request GET \
  --url https://{instance}.omniapp.co/api/v1/models/{modelId}/topic/{topicName} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "topic": {
    "name": "<string>",
    "base_view_name": "<string>",
    "label": "<string>",
    "views": [
      {}
    ],
    "relationships": {}
  }
}

Authorizations

Authorization
string
header
required

Use either an Organization API Key or Personal Access Token (PAT). Include in the Authorization header as: Bearer YOUR_TOKEN

Path Parameters

modelId
string<uuid>
required

Model ID

topicName
string
required

Topic name

Response

Topic details

success
boolean
topic
object