Skip to main content
GET
/
api
/
v1
/
records
/
{collection}
/
{record_id}
Get Record
curl --request GET \
  --url https://api.example.com/api/v1/records/{collection}/{record_id}
{
  "id": "<string>",
  "account_id": "<string>",
  "created_at": "<string>",
  "created_by": "<string>",
  "updated_at": "<string>",
  "updated_by": "<string>",
  "account_name": "<string>"
}

Headers

authorization
string | null

Path Parameters

collection
string
required
record_id
string
required

Response

Successful Response

Response for a created or retrieved record.

Contains all system fields plus user-defined fields.

id
string
required

Record ID (UUID)

account_id
string
required

Account ID the record belongs to

created_at
string
required

ISO 8601 timestamp when record was created

created_by
string
required

User ID who created the record

updated_at
string
required

ISO 8601 timestamp when record was last updated

updated_by
string
required

User ID who last updated the record

account_name
string | null

Display name for the account (optional)