Skip to main content
GET
/
postures
/
{posture_id}
Read a posture's current revision
curl --request GET \
  --url https://api.mnemom.ai/v1/postures/{posture_id} \
  --header 'Authorization: Bearer <token>'
{
  "posture_id": "<string>",
  "slug": "<string>",
  "name": "<string>",
  "is_default": true,
  "current_revision_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "org_id": "<string>",
  "owner_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "deleted_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

posture_id
string
required

Posture ID (tp-{8-hex}).

Pattern: ^tp-[a-z0-9-]{1,64}$

Response

Posture.

Trust posture row (mig 173). Library row; revisions are versioned bodies stored separately.

posture_id
string
required
Pattern: ^tp-[a-z0-9-]{1,64}$
slug
string
required

URL-safe identifier (e.g., 'standard', 'banking-core').

name
string
required
scope
enum<string>
required
Available options:
platform,
org
is_default
boolean
required

True for Mnemom-shipped platform defaults.

current_revision_id
string | null
required

FK to trust_posture_revisions; NULL only mid-create.

created_at
string<date-time>
required
updated_at
string<date-time>
required
description
string | null
org_id
string | null

NULL for platform-scope postures.

owner_user_id
string<uuid> | null
deleted_at
string<date-time> | null

Soft-delete timestamp; NULL = live.