Skip to main content
GET
/
postures
/
{posture_id}
/
revisions
List all revisions of a posture
curl --request GET \
  --url https://api.mnemom.ai/v1/postures/{posture_id}/revisions \
  --header 'Authorization: Bearer <token>'
{
  "revisions": [
    {
      "revision_id": "<string>",
      "posture_id": "<string>",
      "revision_number": 2,
      "body": {},
      "created_at": "2023-11-07T05:31:56Z",
      "change_note": "<string>",
      "created_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

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

Revisions in chronological order.

revisions
object[]
required