Knowledge CenterAPI References

Metadata API

Discover the shape of your workspace — custom fields, pipeline configurations, and workspace members. Use this before creating records with custom properties or working with pipelines.

Source:apiDocs/metadata.md
MethodPathDescription
GET/rest/metadata/objects/standard-id/{id}Get field definitions for an entity
GET/rest/metadata/pipelinesList all pipelines in the workspace
GET/rest/metadata/pipelines/{pipelineId}Get field definitions for a pipeline
GET/rest/workspaceMembersList all workspace members

Object Metadata (Custom Fields)

Each entity type has a fixed standard ID. Fetch it to see all fields — both standard and any custom fields your workspace has added.

EntityStandard ID
Person20202020-e674-48e5-a542-72570eee7213
Company20202020-b374-4779-a561-80086cb2e17f
Opportunity20202020-9549-49e8-b0e5-1d14de9583c0
Note20202020-3e09-4c77-8d0a-1e7b0e5b0c7e
Task20202020-af3d-4c67-a5a0-7d1e5a7c0d22
# Get all Person field definitions (including custom fields)
curl -G "https://app.usedalil.ai/rest/metadata/objects/standard-id/20202020-e674-48e5-a542-72570eee7213" \
  -H "Authorization: Bearer YOUR_API_KEY"

Pipeline Discovery

Required before any pipeline operations. Returns each pipeline's namePlural (used as the REST path).

# List all pipelines
curl -G "https://app.usedalil.ai/rest/metadata/pipelines" \
  -H "Authorization: Bearer YOUR_API_KEY"

# Get fields for a specific pipeline
curl -G "https://app.usedalil.ai/rest/metadata/pipelines/pipeline-uuid" \
  -H "Authorization: Bearer YOUR_API_KEY"

Workspace Members

List all members in your workspace. Member IDs are used for ownerId, assigneeId, and accountOwnerId fields.

curl -G "https://app.usedalil.ai/rest/workspaceMembers" \
  -H "Authorization: Bearer YOUR_API_KEY"