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.
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.
# 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"