Skip to main content
GET
/
organizations
/
{organizationID}
/
membership-limits
Get organization membership limits
curl --request GET \
  --url https://api.xata.tech/organizations/{organizationID}/membership-limits \
  --header 'Authorization: Bearer <token>'
{
  "maxMembers": 2,
  "maxInvites": 2
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

organizationID
string
required

Unique identifier for a specific organization

Pattern: [a-zA-Z0-9_-~:]+

Response

Membership limits for the organization

Membership limits for an organization

maxMembers
integer
required

Maximum number of members allowed in the organization

Required range: x >= 1
maxInvites
integer
required

Maximum number of pending invitations allowed at once

Required range: x >= 1