Skip to main content
GET
/
{type_name}
/
{object_id}
Resolve a single object
curl --request GET \
  --url https://server.meetdoris.com/api/v1/ontology/{type_name}/{object_id} \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "record": {
    "id": "5590756e-c2e2-50f9-ba17-0f8dcee493bd",
    "deal_name": "Apex Enterprise Platform",
    "amount": 285000,
    "currency": "USD",
    "pipeline": "Enterprise",
    "stage": "Negotiation",
    "stage_probability": 0.7,
    "close_date": "2026-05-21T14:46:40.226524+00:00",
    "create_date": "2026-03-22T14:46:40.226524+00:00",
    "days_in_stage": null,
    "is_closed": false,
    "is_won": null,
    "closed_lost_reason": null,
    "forecast_category": null,
    "owner_name": "Jordan Ellis",
    "owner_email": "jordan.ellis@meridian-tech.example.com",
    "linked_company_name": "Apex Industries"
  },
  "commitments": [
    {
      "id": "e7f8bfdb-76d7-5d50-b64f-a10419cd8f03",
      "type": "commitment",
      "title": "Review proposal with leadership team",
      "status": "completed",
      "owner_type": "buyer",
      "due_date": "2026-04-06",
      "completed_at": null
    },
    {
      "id": "215e0dd6-2d27-58b9-a499-22f2e82f48a1",
      "type": "commitment",
      "title": "Provide technical documentation for Zendesk Sell integration",
      "status": "overdue",
      "owner_type": "rep",
      "due_date": "2026-04-23",
      "completed_at": null
    }
  ],
  "_links": {},
  "_meta": {
    "type": "deal",
    "expand": [
      "commitments"
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.meetdoris.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key with sk-live- prefix. Generate keys from Console → API Keys in the Doris app.

Path Parameters

type_name
enum<string>
required
Available options:
deal,
account,
meeting,
commitment,
objection,
competitor,
tactic,
strategy,
document,
person,
artifact,
pipeline,
lead,
insight
object_id
string<uuid>
required

Query Parameters

expand
string

Comma-separated expand keys (e.g. stakeholders,meetings,commitments)

Response

Resolved object with properties, expand data, and link metadata

ok
boolean
record
object

The resolved entity with all its properties

Link metadata showing relationship counts and directions

_meta
object