Skip to main content
GET
/
admin
/
tenants
/
{id}
Show a tenant
curl --request GET \
  --url https://api.example.com/admin/tenants/{id} \
  --header 'Authorization: Bearer <token>'
{
  "tenant": {
    "id": "<string>",
    "name": "<string>",
    "created_at": "<string>"
  },
  "quotas": {
    "tenant_id": "<string>",
    "items_limit": 123,
    "webhooks_limit": 123,
    "blobs_limit": 123,
    "storage_bytes_limit": 123,
    "rate_per_minute_limit": 123,
    "updated_at": "<string>"
  },
  "recent_activity": [
    {
      "id": "<string>",
      "severity": "<string>",
      "summary": "<string>",
      "created_at": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.myme.so/llms.txt

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

Authorizations

Authorization
string
header
required

Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

Path Parameters

id
string
required

Response

Tenant detail

tenant
object
required
quotas
object
required
recent_activity
object[]
required