Skip to main content
GET
/
teams
/
{team_id}
/
card
/
history
Get team card history
curl --request GET \
  --url https://api.mnemom.ai/v1/teams/{team_id}/card/history \
  --header 'Authorization: Bearer <token>'
{
  "cards": [
    {
      "card_id": "<string>",
      "card_source": "manual",
      "issued_at": "2023-11-07T05:31:56Z",
      "is_active": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Supabase JWT token in Authorization: Bearer header

Path Parameters

team_id
string
required

Team identifier (UUID)

Response

Card history

cards
object[]