Atlas uses rate limiting to control the rate of requests sent to the V2 API endpoints within a specified timeframe to prevent overload and ensure fair usage. Atlas uses the Token Bucket Algorithm to limit the number of requests it processes. The API response headers offer real-time visibility into rate limit quotas, current usage, and reset times.
Overview
Each Atlas endpoint is associated with an endpoint set (a collection of endpoints that share the same rate limits) and scope (resource scopes organization, project, user, or IP address) that define its rate limits. The limits for the endpoints vary as only endpoints within the same endpoint set and scope are rate limited using the same token bucket. Therefore, Atlas doesn't apply a uniform API limit across all the API requests made by an Atlas organization or project.
Token Bucket Algorithm
The Token Bucket Algorithm works as follows:
Atlas fills the bucket up to the maximum number of tokens (
capacity) for that bucket. This reflects the maximum number of requests you can send.Atlas allows requests only if tokens are available. Each request to the endpoint consumes one token.
Atlas adds tokens to the bucket at a fixed rate (
refillRate) at specific intervals (refillDurationSeconds) up to the maximum number of tokens (capacity).You can send a burst of requests as long as there are tokens in the bucket. If there are only limited number of tokens in the bucket, your allowed burst is limited to the available number of tokens in the bucket.
When the bucket is empty, the Atlas Administration API returns a 429 (Too Many Requests) HTTP status code for any additional requests.
{ "detail": "Rate limit exceeded for api/atlas/v2/orgs. Please retry after 55 seconds. Request capacity: 10. Refill rate: 5 per 60 seconds.", "error": 429, "errorCode": "RATE_LIMITED_TOKEN_BUCKET", "parameters": [ "api/atlas/v2/orgs", 55, 10, 5, 60 ], "reason": "Too Many Requests" }
To learn more, see Response Headers
Response Headers
The Atlas Administration API response might contain the following headers:
| Maximum number of requests allowed for this endpoint (token bucket capacity). |
| Remaining number of requests the user can make to this endpoint at this point in time (tokens remaining in the token bucket). |
| The minimum amount of time, in seconds, to wait before retrying the request. This header is only returned when you exceed the rate limit. |
Note
Atlas might not always return the response headers. You must handle missing response headers gracefully, and not depend on their presence.
Retry Strategies
When you reach the rate limit, the Atlas Administration API returns a 429 (Too Many Requests) HTTP status code. We recommend:
Waiting for at least the time specified by the
Retry-Afterheader before retrying.If the retry fails, waiting for a significantly longer period.
Example
Before the first retry, wait ten seconds. Before the second retry, wait for twenty seconds. Before the third retry, wait for forty seconds, and so on.
Even if you wait for the same amount of time as specified by the Retry-After
header, you might still get rate limited. In this case, we recommend that you
continue backing off using an exponential delay (jitter). To prevent
requests from failing due to simultaneous retry operations, we also recommend
adding a random delay (jitter) to the calculated wait time.
Example
Suppose multiple clients are using the same endpoint for the same Atlas
project. The clients get rate limited at the same time and wait for the same
amount of time as specified by the Retry-After header. If one of the
clients successfully submits requests and depletes the token bucket again
before the other clients have retried their requests, the other clients
will still get rate limited.
You can also use the following to calculate when the bucket might be at full capacity again (assuming no other requests consume the tokens during that time):
(capacity / refill rate) * refill interval
Contact support if you require higher rate limits.
View Rate Limits
You can view the rate limits for all the endpoint sets and scopes by sending a
GET request to the rateLimits resource.
curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-03-12+json" \ --header "Content-Type: application/json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/rateLimits"
To view the rate limits applicable for your organization, project, user, or IP
address, send a GET request to the rateLimits endpoint using one of the
optional query parameters groupId, orgId, userId, or ipAddress.
curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-03-12+json" \ --header "Content-Type: application/json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/rateLimits?groupId={groupId}"
To learn more, see the Atlas Administration API Specification.
Default Rate Limits
Important
Rate limits are not part of the API contract and might change without prior notice.
AWS Clusters DNS
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/awsCustomDNSPATCH
/api/atlas/v2/groups/{groupId}/awsCustomDNS
Access Logs
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}GET
/api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}
Activity Feed
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/activityFeed
Scope: ORGANIZATION
Capacity: 500
Refill: 250/60s
Endpoints:
GET
/api/atlas/v2/orgs/{orgId}/activityFeed
Alert Configurations
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}GET
/api/atlas/v2/groups/{groupId}/alertConfigsGET
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}PATCH
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}POST
/api/atlas/v2/groups/{groupId}/alertConfigsPUT
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}
Scope: USER
Capacity: 300
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2/alertConfigs/matchers/fieldNames
Alerts
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alertsGET
/api/atlas/v2/groups/{groupId}/alertsGET
/api/atlas/v2/groups/{groupId}/alerts/{alertId}GET
/api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigsPATCH
/api/atlas/v2/groups/{groupId}/alerts/{alertId}
Atlas Search Deployments
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deploymentGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deploymentPATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deploymentPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment
Atlas Search Indexes
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexesPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes
Auditing
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/auditLogPATCH
/api/atlas/v2/groups/{groupId}/auditLog
Cloud Backups
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}DELETE
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints/{endpointId}DELETE
/api/atlas/v2/groups/{groupId}/backupCompliancePolicyDELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/scheduleDELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}GET
/api/atlas/v2/groups/{groupId}/backup/exportBucketsGET
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}GET
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpointsGET
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints/{endpointId}GET
/api/atlas/v2/groups/{groupId}/backupCompliancePolicyGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exportsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/scheduleGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshotsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClustersGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs/{jobId}PATCH
/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedulePATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}POST
/api/atlas/v2/groups/{groupId}/backup/exportBucketsPOST
/api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpointsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exportsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshotsPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobsPUT
/api/atlas/v2/groups/{groupId}/backupCompliancePolicy
Cloud Migration Service
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}GET
/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}POST
/api/atlas/v2/groups/{groupId}/liveMigrationsPOST
/api/atlas/v2/groups/{groupId}/liveMigrations/validatePUT
/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover
Scope: ORGANIZATION
Capacity: 500
Refill: 250/60s
Endpoints:
DELETE
/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokensGET
/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjectsPOST
/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens
Cloud Provider Access
Scope: GROUP
Capacity: 2000
Refill: 1000/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}GET
/api/atlas/v2/groups/{groupId}/cloudProviderAccessGET
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}PATCH
/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}POST
/api/atlas/v2/groups/{groupId}/cloudProviderAccess
Cluster Log Monitoring
Scope: GROUP
Capacity: 10000
Refill: 5000/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz
Cluster Outage Simulation
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulationGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulationPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation
Clusters
Scope: GROUP
Capacity: 10000
Refill: 5000/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}GET
/api/atlas/v2/groups/{groupId}/clustersGET
/api/atlas/v2/groups/{groupId}/clusters/provider/regionsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/autoScalingConfigurationGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/statusGET
/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgsPOST
/api/atlas/v2/groups/{groupId}/clustersPOST
/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradePOST
/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerlessPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimariesPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:grantMongoDBEmployeeAccessPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersionPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:revokeMongoDBEmployeeAccessPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersionPOST
/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}
Scope: USER
Capacity: 300
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2/clusters
Collection Level Metrics
Scope: GROUP
Capacity: 300
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinnedGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespacesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurementsGET
/api/atlas/v2/groups/{groupId}/collStats/metricsGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespacesGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurementsPATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinnedPATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpinPUT
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned
Custom Database Roles
Scope: GROUP
Capacity: 2000
Refill: 1000/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}GET
/api/atlas/v2/groups/{groupId}/customDBRoles/rolesGET
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}PATCH
/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}POST
/api/atlas/v2/groups/{groupId}/customDBRoles/roles
Data Federation
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}DELETE
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}DELETE
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}GET
/api/atlas/v2/groups/{groupId}/dataFederationGET
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}GET
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limitsGET
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}GET
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gzGET
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIdsGET
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}PATCH
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}PATCH
/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}POST
/api/atlas/v2/groups/{groupId}/dataFederationPOST
/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds
Database Users
Scope: GROUP
Capacity: 10000
Refill: 5000/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}GET
/api/atlas/v2/groups/{groupId}/databaseUsersGET
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}PATCH
/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}POST
/api/atlas/v2/groups/{groupId}/databaseUsers
Encryption At Rest Using Customer Key Management
Scope: GROUP
Capacity: 2000
Refill: 1000/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}GET
/api/atlas/v2/groups/{groupId}/encryptionAtRestGET
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpointsGET
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}PATCH
/api/atlas/v2/groups/{groupId}/encryptionAtRestPOST
/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints
Events
Scope: GROUP
Capacity: 300
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/eventsGET
/api/atlas/v2/groups/{groupId}/events/{eventId}
Scope: ORGANIZATION
Capacity: 500
Refill: 250/60s
Endpoints:
GET
/api/atlas/v2/orgs/{orgId}/eventsGET
/api/atlas/v2/orgs/{orgId}/events/{eventId}
Scope: USER
Capacity: 300
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2/eventTypes
Federated Authentication
Scope: ORGANIZATION
Capacity: 500
Refill: 250/60s
Endpoints:
DELETE
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}DELETE
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}GET
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}GET
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappingsGET
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}GET
/api/atlas/v2/orgs/{orgId}/federationSettingsPATCH
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}POST
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappingsPUT
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}
Scope: USER
Capacity: 300
Refill: 100/60s
Endpoints:
DELETE
/api/atlas/v2/federationSettings/{federationSettingsId}DELETE
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}DELETE
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwksGET
/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigsGET
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProvidersGET
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}GET
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xmlPATCH
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}POST
/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders
Flex Clusters
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/flexClusters/{name}GET
/api/atlas/v2/groups/{groupId}/flexClustersGET
/api/atlas/v2/groups/{groupId}/flexClusters/{name}PATCH
/api/atlas/v2/groups/{groupId}/flexClusters/{name}POST
/api/atlas/v2/groups/{groupId}/flexClustersPOST
/api/atlas/v2/groups/{groupId}/flexClusters:tenantUpgrade
Flex Restore Jobs
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobsGET
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs/{restoreJobId}POST
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs
Flex Snapshots
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshotsGET
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshots/{snapshotId}POST
/api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/download
Global Clusters
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMappingDELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespacesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWritesPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMappingPOST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces
IP Addresses
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/ipAddresses
Invoices
Scope: ORGANIZATION
Capacity: 500
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}GET
/api/atlas/v2/orgs/{orgId}/invoicesGET
/api/atlas/v2/orgs/{orgId}/invoices/pendingGET
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}GET
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csvGET
/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems:searchPOST
/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage
Scope: USER
Capacity: 300
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2/skusGET
/api/atlas/v2/skus/{skuId}
LDAP Configuration
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMappingGET
/api/atlas/v2/groups/{groupId}/userSecurityGET
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}PATCH
/api/atlas/v2/groups/{groupId}/userSecurityPOST
/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify
Legacy Backup
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpointsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotScheduleGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedulePATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}
Maintenance Windows
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/maintenanceWindowGET
/api/atlas/v2/groups/{groupId}/maintenanceWindowPATCH
/api/atlas/v2/groups/{groupId}/maintenanceWindowPOST
/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDeferPOST
/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer
MongoDB Cloud Users
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/users/{userId}GET
/api/atlas/v2/groups/{groupId}/usersGET
/api/atlas/v2/groups/{groupId}/users/{userId}POST
/api/atlas/v2/groups/{groupId}/usersPOST
/api/atlas/v2/groups/{groupId}/users/{userId}:addRolePOST
/api/atlas/v2/groups/{groupId}/users/{userId}:removeRolePUT
/api/atlas/v2/groups/{groupId}/users/{userId}/roles
Scope: ORGANIZATION
Capacity: 500
Refill: 250/60s
Endpoints:
DELETE
/api/atlas/v2/orgs/{orgId}/users/{userId}GET
/api/atlas/v2/orgs/{orgId}/usersGET
/api/atlas/v2/orgs/{orgId}/users/{userId}PATCH
/api/atlas/v2/orgs/{orgId}/users/{userId}POST
/api/atlas/v2/orgs/{orgId}/usersPOST
/api/atlas/v2/orgs/{orgId}/users/{userId}:addRolePOST
/api/atlas/v2/orgs/{orgId}/users/{userId}:removeRolePUT
/api/atlas/v2/orgs/{orgId}/users/{userId}/roles
Scope: USER
Capacity: 2500
Refill: 2000/60s
Endpoints:
GET
/api/atlas/v2/users/byName/{userName}GET
/api/atlas/v2/users/{userId}POST
/api/atlas/v2/users
Monitoring And Logs
Scope: GROUP
Capacity: 300
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metricsGET
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurementsGET
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurementsGET
/api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurementsGET
/api/atlas/v2/groups/{groupId}/processesGET
/api/atlas/v2/groups/{groupId}/processes/{processId}GET
/api/atlas/v2/groups/{groupId}/processes/{processId}/databasesGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}GET
/api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurementsGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/disksGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}GET
/api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurementsGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/measurements
Network Peering
Scope: GROUP
Capacity: 2000
Refill: 1000/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/containers/{containerId}DELETE
/api/atlas/v2/groups/{groupId}/peers/{peerId}GET
/api/atlas/v2/groups/{groupId}/containersGET
/api/atlas/v2/groups/{groupId}/containers/allGET
/api/atlas/v2/groups/{groupId}/containers/{containerId}GET
/api/atlas/v2/groups/{groupId}/peersGET
/api/atlas/v2/groups/{groupId}/peers/{peerId}GET
/api/atlas/v2/groups/{groupId}/privateIpModePATCH
/api/atlas/v2/groups/{groupId}/containers/{containerId}PATCH
/api/atlas/v2/groups/{groupId}/peers/{peerId}PATCH
/api/atlas/v2/groups/{groupId}/privateIpModePOST
/api/atlas/v2/groups/{groupId}/containersPOST
/api/atlas/v2/groups/{groupId}/peers
Online Archive
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchivesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gzGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives
Organization Settings
Scope: ORGANIZATION
Capacity: 10
Refill: 5/60s
Endpoints:
GET
/api/atlas/v2/orgs/{orgId}/settingsPATCH
/api/atlas/v2/orgs/{orgId}/settings
Organizations
Scope: ORGANIZATION
Capacity: 500
Refill: 250/60s
Endpoints:
DELETE
/api/atlas/v2/orgs/{orgId}DELETE
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}GET
/api/atlas/v2/orgs/{orgId}GET
/api/atlas/v2/orgs/{orgId}/groupsGET
/api/atlas/v2/orgs/{orgId}/invitesGET
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}PATCH
/api/atlas/v2/orgs/{orgId}PATCH
/api/atlas/v2/orgs/{orgId}/invitesPATCH
/api/atlas/v2/orgs/{orgId}/invites/{invitationId}POST
/api/atlas/v2/orgs/{orgId}/invites
Scope: USER
Capacity: 300
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2/orgsPOST
/api/atlas/v2/orgs
Performance Advisor
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/managedSlowMs/disableGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/dropIndexSuggestionsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/schemaAdviceGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/suggestedIndexesGET
/api/atlas/v2/groups/{groupId}/managedSlowMsGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespacesGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogsGET
/api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexesPOST
/api/atlas/v2/groups/{groupId}/managedSlowMs/enable
Private Endpoint Services
Scope: GROUP
Capacity: 4000
Refill: 2000/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}DELETE
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}GET
/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalModeGET
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointServiceGET
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}GET
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}PATCH
/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalModePOST
/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointServicePOST
/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint
Programmatic API Keys
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}GET
/api/atlas/v2/groups/{groupId}/apiKeysPATCH
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}POST
/api/atlas/v2/groups/{groupId}/apiKeysPOST
/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}
Scope: ORGANIZATION
Capacity: 500
Refill: 250/60s
Endpoints:
DELETE
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}DELETE
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}GET
/api/atlas/v2/orgs/{orgId}/apiKeysGET
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}GET
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessListGET
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}PATCH
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}POST
/api/atlas/v2/orgs/{orgId}/apiKeysPOST
/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList
Project IP Access List
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}GET
/api/atlas/v2/groups/{groupId}/accessListGET
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}GET
/api/atlas/v2/groups/{groupId}/accessList/{entryValue}/statusPOST
/api/atlas/v2/groups/{groupId}/accessList
Projects
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}DELETE
/api/atlas/v2/groups/{groupId}/invites/{invitationId}DELETE
/api/atlas/v2/groups/{groupId}/limits/{limitName}GET
/api/atlas/v2/groups/{groupId}GET
/api/atlas/v2/groups/{groupId}/invitesGET
/api/atlas/v2/groups/{groupId}/invites/{invitationId}GET
/api/atlas/v2/groups/{groupId}/limitsGET
/api/atlas/v2/groups/{groupId}/limits/{limitName}GET
/api/atlas/v2/groups/{groupId}/mongoDBVersionsGET
/api/atlas/v2/groups/{groupId}/settingsPATCH
/api/atlas/v2/groups/{groupId}PATCH
/api/atlas/v2/groups/{groupId}/invitesPATCH
/api/atlas/v2/groups/{groupId}/invites/{invitationId}PATCH
/api/atlas/v2/groups/{groupId}/limits/{limitName}PATCH
/api/atlas/v2/groups/{groupId}/settingsPOST
/api/atlas/v2/groups/{groupId}/accessPOST
/api/atlas/v2/groups/{groupId}/invitesPOST
/api/atlas/v2/groups/{groupId}:migrate
Scope: USER
Capacity: 1200
Refill: 500/60s
Endpoints:
GET
/api/atlas/v2/groupsGET
/api/atlas/v2/groups/byName/{groupName}POST
/api/atlas/v2/groups
Push Based Log Exports
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}DELETE
/api/atlas/v2/groups/{groupId}/pushBasedLogExportGET
/api/atlas/v2/groups/{groupId}/logIntegrationsGET
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}GET
/api/atlas/v2/groups/{groupId}/pushBasedLogExportPATCH
/api/atlas/v2/groups/{groupId}/pushBasedLogExportPOST
/api/atlas/v2/groups/{groupId}/logIntegrationsPOST
/api/atlas/v2/groups/{groupId}/pushBasedLogExportPUT
/api/atlas/v2/groups/{groupId}/logIntegrations/{id}
Query Shape Insights
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapeInsights/summariesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapeInsights/{queryShapeHash}/detailsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapesGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes/{queryShapeHash}PATCH
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes/{queryShapeHash}
Rate Limits Inspection
Scope: USER
Capacity: 300
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2/rateLimitsGET
/api/atlas/v2/rateLimits/{endpointSetId}
Resource Policies
Scope: ORGANIZATION
Capacity: 500
Refill: 250/60s
Endpoints:
DELETE
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}GET
/api/atlas/v2/orgs/{orgId}/nonCompliantResourcesGET
/api/atlas/v2/orgs/{orgId}/resourcePoliciesGET
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}PATCH
/api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}POST
/api/atlas/v2/orgs/{orgId}/resourcePoliciesPOST
/api/atlas/v2/orgs/{orgId}/resourcePolicies:validate
Root
Scope: IP
Capacity: 400
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2/unauth/controlPlaneIPAddresses
Scope: USER
Capacity: 300
Refill: 100/60s
Endpoints:
GET
/api/atlas/v2
Service Accounts
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}DELETE
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessList/{ipAddress}DELETE
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/secrets/{secretId}GET
/api/atlas/v2/groups/{groupId}/serviceAccountsGET
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}GET
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessListPATCH
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}POST
/api/atlas/v2/groups/{groupId}/serviceAccountsPOST
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessListPOST
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/secretsPOST
/api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}:invite
Scope: ORGANIZATION
Capacity: 500
Refill: 250/60s
Endpoints:
DELETE
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}DELETE
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessList/{ipAddress}DELETE
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/secrets/{secretId}GET
/api/atlas/v2/orgs/{orgId}/serviceAccountsGET
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}GET
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessListGET
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/groupsPATCH
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}POST
/api/atlas/v2/orgs/{orgId}/serviceAccountsPOST
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessListPOST
/api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/secrets
Shared Tier Restore Jobs
Scope: GROUP
Capacity: 4000
Refill: 2000/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restoresGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore
Shared Tier Snapshots
Scope: GROUP
Capacity: 4000
Refill: 2000/60s
Endpoints:
GET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshotsGET
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download
Streams
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId}DELETE
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}DELETE
/api/atlas/v2/groups/{groupId}/streams/{tenantName}DELETE
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}DELETE
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}GET
/api/atlas/v2/groups/{groupId}/streamsGET
/api/atlas/v2/groups/{groupId}/streams/accountDetailsGET
/api/atlas/v2/groups/{groupId}/streams/activeVpcPeeringConnectionsGET
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnectionsGET
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId}GET
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnectionsGET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}GET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogsGET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connectionsGET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}GET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}GET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processorsGET
/api/atlas/v2/groups/{groupId}/streams/{tenantName}:downloadOperationalLogsPATCH
/api/atlas/v2/groups/{groupId}/streams/{tenantName}PATCH
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}PATCH
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}POST
/api/atlas/v2/groups/{groupId}/streamsPOST
/api/atlas/v2/groups/{groupId}/streams/privateLinkConnectionsPOST
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:acceptPOST
/api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:rejectPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connectionsPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processorPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:startPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:startWithPOST
/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stopPOST
/api/atlas/v2/groups/{groupId}/streams:withSampleConnections
Teams
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/teams/{teamId}GET
/api/atlas/v2/groups/{groupId}/teamsGET
/api/atlas/v2/groups/{groupId}/teams/{teamId}PATCH
/api/atlas/v2/groups/{groupId}/teams/{teamId}POST
/api/atlas/v2/groups/{groupId}/teams
Scope: ORGANIZATION
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/orgs/{orgId}/teams/{teamId}DELETE
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}GET
/api/atlas/v2/orgs/{orgId}/teamsGET
/api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}GET
/api/atlas/v2/orgs/{orgId}/teams/{teamId}GET
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/usersPATCH
/api/atlas/v2/orgs/{orgId}/teams/{teamId}POST
/api/atlas/v2/orgs/{orgId}/teamsPOST
/api/atlas/v2/orgs/{orgId}/teams/{teamId}/usersPOST
/api/atlas/v2/orgs/{orgId}/teams/{teamId}:addUserPOST
/api/atlas/v2/orgs/{orgId}/teams/{teamId}:removeUser
Third Party Integrations
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}GET
/api/atlas/v2/groups/{groupId}/integrationsGET
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}POST
/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/indexPOST
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}PUT
/api/atlas/v2/groups/{groupId}/integrations/{integrationType}
X509 Authentication
Scope: GROUP
Capacity: 1200
Refill: 500/60s
Endpoints:
DELETE
/api/atlas/v2/groups/{groupId}/userSecurity/customerX509GET
/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certsPOST
/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs
Note
If you contacted support for higher rate limits, you might have different limits than what is described in the preceding table.