Skip to main content
GET
/
custom_records_types
/
{type_id}
Get custom record type
curl --request GET \
  --url https://api.onvy.health/custom_records_types/{type_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "project_id": "<string>",
  "display_name": "<string>",
  "description": "<string>",
  "data_jsonschema": {},
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.onvy.health/llms.txt

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

Authorizations

Authorization
string
header
required

OAuth bearer token for Health API authentication

Path Parameters

type_id
string
required

Custom record type ID

Response

Custom record type details

id
string

Developer-defined custom record type identifier (e.g., blood_test_v1)

project_id
string

Project ID

display_name
string

Human-readable name of the custom record type

description
string | null

Optional description of the custom record type

data_jsonschema
object

JSON Schema describing the structure of the data field for records of this type

created_at
string<date-time>
updated_at
string<date-time>