Make the MongoDB docs better! We value your opinion. Share your feedback for a chance to win $100.
MongoDB Branding Shape
Click here >
Docs Menu

Límites de velocidad de la API de administración de Atlas

Atlas utiliza limitación de tasa para controlar la tasa de solicitudes enviadas a los puntos finales de la V2 API dentro de un período de tiempo especificado, para evitar la sobrecarga y garantizar un uso justo. Atlas utiliza el algoritmo Token Bucket para limitar la cantidad de solicitudes que procesa. Los encabezados de respuesta API ofrecen visibilidad en tiempo real sobre los límites de cuota, el uso actual y los tiempos de reinicio.

Cada extremo de Atlas está asociado con un conjunto de extremos (una colección de extremos que comparten los mismos límites de velocidad) y un ámbito (ámbitos de recursos como organización, proyecto, usuario o dirección IP) que definen sus límites de velocidad. Los límites para los endpoints varían, ya que sólo los endpoints dentro del mismo conjunto de endpoints y alcance están limitados en velocidad utilizando el mismo bucket de tokens. Por lo tanto, Atlas no aplica un límite uniforme de API en todas las solicitudes de API realizadas por una organización o proyecto de Atlas.

El algoritmo del BUcket de tokens funciona de la siguiente manera:

  • Atlas llena el bucket hasta el número máximo de tokens (capacity) para ese bucket. Esto refleja el número máximo de solicitudes que puedes enviar.

  • Atlas permite solicitudes únicamente cuando hay fichas disponibles. Cada solicitud al punto final consume un token.

  • Atlas agrega tokens al bucket a una tasa fija (refillRate) en intervalos específicos (refillDurationSeconds) hasta el número máximo de tokens (capacity).

    Puedes enviar una ráfaga de solicitudes siempre y cuando haya tokens en el bucket. Si solo hay un número limitado de tokens en el bucket, tu ráfaga permitida se limita al número disponible de tokens en el bucket.

Cuando el bucket está vacío, la API de Administración de Atlas devuelve un 429 (Demasiadas solicitudes) HTTP código de estado para cualquier solicitud adicional.

Mensaje de error de muestra
{
"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"
}

Para obtener más información, consulte Encabezados de respuesta

La respuesta de la API de Administración de Atlas puede contener los siguientes encabezados:

RateLimit-Limit

Número máximo de solicitudes permitidas para este punto final (capacidad de cubo de tokens).

RateLimit-Remaining

Número de solicitudes restantes que el usuario puede hacer a este punto final en este momento (tokens restantes en el bucket de tokens).

Retry-After

La cantidad mínima de tiempo, en segundos, que se debe esperar antes de volver a intentar la solicitud. Este encabezado solo se devuelve cuando superas el límite de velocidad.

Nota

Atlas podría no devolver siempre los encabezados de respuesta. Debes gestionar la ausencia de encabezados de respuesta de manera eficiente y no depender de su presencia.

Cuando llega al límite de frecuencia, la API de administración de Atlas devuelve un 429 (demasiadas solicitudes) HTTP código de estado. Recomendamos:

  1. Esperando al menos el tiempo especificado por el encabezado Retry-After antes de reintentar.

  2. Si la reintento falla, esperar un período significativamente más largo.

Ejemplo

Antes del primer reintento, espera diez segundos. Antes del segundo reintento, espera veinte segundos. Antes del tercer reintento, espera cuarenta segundos, y así sucesivamente.

Incluso si espera la misma cantidad de tiempo que se especifica en el encabezado Retry-After, es posible que aún se le limite la tasa. En este caso, te recomendamos que sigas retrocediendo utilizando un delay exponencial (jitter). Para evitar que las solicitudes fallen debido a operaciones de reintentos simultáneas, también recomendamos agregar un retraso aleatorio (jitter) al tiempo de espera calculado.

Ejemplo

Supongamos que varios clientes están utilizando el mismo endpoint para el mismo proyecto Atlas. Los clientes reciben una limitación de la tasa al mismo tiempo y esperan la misma cantidad de tiempo según lo especificado por el encabezado Retry-After. Si uno de los clientes envía solicitudes con éxito y agota el bucket de tokens nuevamente antes de que los otros clientes hayan reenviado sus solicitudes, los otros clientes seguirán estando sujetos a limitaciones de tasas.

También puedes usar lo siguiente para calcular cuándo es posible que el bucket vuelva a estar a plena capacidad (suponiendo que ninguna otra solicitud consuma los tokens durante ese tiempo):

(capacity / refill rate) * refill interval

Contacte al soporte si necesita límites de velocidad más altos.

Puedes ver los límites de tasa para todos los conjuntos de endpoints y ámbitos enviando una solicitud GET al recurso rateLimits.

Ejemplo de solicitud para devolver los límites de velocidad para todos los conjuntos de puntos finales y alcances
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"

Para ver los límites de tasa aplicables para su organización, Proyecto, usuario o dirección IP, envíe una solicitud GET al endpoint rateLimits utilizando uno de los parámetros de query opcionales groupId, orgId, userId o ipAddress.

Ejemplo de solicitud para devolver los límites de tarifa de tu proyecto
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}"

Para obtener más información, consulta la Especificación API de administración de Atlas.

Importante

Los límites de frecuencia no forman parte del contrato de la API y podrían modificarse sin previo aviso.

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/awsCustomDNS

  • PATCH /api/atlas/v2/groups/{groupId}/awsCustomDNS

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/dbAccessHistory/clusters/{clusterName}

  • OBTENER /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/activityFeed

Alcance: ORGANIZACIÓN

Capacidad: 500

Refill: 250/60s

Puntos finales:

  • OBTENER /api/atlas/v2/orgs/{orgId}/activityFeed

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}

  • OBTENER /api/atlas/v2/groups/{groupId}/alertConfigs

  • OBTENER /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}

  • PATCH /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}

  • publicación /api/atlas/v2/groups/{groupId}/alertConfigs

  • PUT /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}

Alcance: USUARIO

Capacidad: 300

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2/alertConfigs/matchers/fieldNames

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}/alerts

  • OBTENER /api/atlas/v2/groups/{groupId}/alerts

  • OBTENER /api/atlas/v2/groups/{groupId}/alerts/{alertId}

  • OBTENER /api/atlas/v2/groups/{groupId}/alerts/{alertId}/alertConfigs

  • PATCH /api/atlas/v2/groups/{groupId}/alerts/{alertId}

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment

  • PATCH /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment

Ámbito: GRUPO

Capacidad: 500

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{indexId}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}

  • OBTENER /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}

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/auditLog

  • PATCH /api/atlas/v2/groups/{groupId}/auditLog

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}

  • Borrar /api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints/{endpointId}

  • Borrar /api/atlas/v2/groups/{groupId}/backupCompliancePolicy

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}

  • OBTENER /api/atlas/v2/groups/{groupId}/backup/exportBuckets

  • OBTENER /api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}

  • OBTENER /api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints

  • OBTENER /api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints/{endpointId}

  • OBTENER /api/atlas/v2/groups/{groupId}/backupCompliancePolicy

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports/{exportId}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs

  • OBTENER /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/schedule

  • PATCH /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}

  • publicación /api/atlas/v2/groups/{groupId}/backup/exportBuckets

  • publicación /api/atlas/v2/groups/{groupId}/backup/{cloudProvider}/privateEndpoints

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs

  • PUT /api/atlas/v2/groups/{groupId}/backupCompliancePolicy

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/liveMigrations/validate/{validationId}

  • OBTENER /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}

  • publicación /api/atlas/v2/groups/{groupId}/liveMigrations

  • publicación /api/atlas/v2/groups/{groupId}/liveMigrations/validate

  • PUT /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover

Alcance: ORGANIZACIÓN

Capacidad: 500

Refill: 250/60s

Puntos finales:

  • Borrar /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens

  • OBTENER /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects

  • publicación /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens

Ámbito: GRUPO

Capacidad: 2000

Refill: 1000/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}

  • OBTENER /api/atlas/v2/groups/{groupId}/cloudProviderAccess

  • OBTENER /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}

  • PATCH /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}

  • publicación /api/atlas/v2/groups/{groupId}/cloudProviderAccess

Ámbito: GRUPO

Capacidad: 10000

Refill: 5000/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation

Ámbito: GRUPO

Capacidad: 10000

Refill: 5000/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/provider/regions

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/autoScalingConfiguration

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/status

  • OBTENER /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}

  • PATCH /api/atlas/v2/groups/{groupId}/clusters/{clusterName}

  • PATCH /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/processArgs

  • publicación /api/atlas/v2/groups/{groupId}/clusters

  • publicación /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade

  • publicación /api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:grantMongoDBEmployeeAccess

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:revokeMongoDBEmployeeAccess

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:unpinFeatureCompatibilityVersion

  • publicación /api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}

Alcance: USUARIO

Capacidad: 300

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2/clusters

Ámbito: GRUPO

Capacidad: 300

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements

  • OBTENER /api/atlas/v2/groups/{groupId}/collStats/metrics

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements

  • PATCH /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned

  • PATCH /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/unpin

  • PUT /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned

Ámbito: GRUPO

Capacidad: 2000

Refill: 1000/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}

  • OBTENER /api/atlas/v2/groups/{groupId}/customDBRoles/roles

  • OBTENER /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}

  • PATCH /api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}

  • publicación /api/atlas/v2/groups/{groupId}/customDBRoles/roles

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}

  • Borrar /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}

  • Borrar /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}

  • OBTENER /api/atlas/v2/groups/{groupId}/dataFederation

  • OBTENER /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}

  • OBTENER /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits

  • OBTENER /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}

  • OBTENER /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz

  • OBTENER /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds

  • OBTENER /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}

  • publicación /api/atlas/v2/groups/{groupId}/dataFederation

  • publicación /api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds

Ámbito: GRUPO

Capacidad: 10000

Refill: 5000/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}

  • OBTENER /api/atlas/v2/groups/{groupId}/databaseUsers

  • OBTENER /api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}

  • PATCH /api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}

  • publicación /api/atlas/v2/groups/{groupId}/databaseUsers

Ámbito: GRUPO

Capacidad: 2000

Refill: 1000/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}

  • OBTENER /api/atlas/v2/groups/{groupId}/encryptionAtRest

  • OBTENER /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints

  • OBTENER /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}

  • PATCH /api/atlas/v2/groups/{groupId}/encryptionAtRest

  • publicación /api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints

Ámbito: GRUPO

Capacidad: 300

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/events

  • OBTENER /api/atlas/v2/groups/{groupId}/events/{eventId}

Alcance: ORGANIZACIÓN

Capacidad: 500

Refill: 250/60s

Puntos finales:

  • OBTENER /api/atlas/v2/orgs/{orgId}/events

  • OBTENER /api/atlas/v2/orgs/{orgId}/events/{eventId}

Alcance: USUARIO

Capacidad: 300

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2/eventTypes

Alcance: ORGANIZACIÓN

Capacidad: 500

Refill: 250/60s

Puntos finales:

  • Borrar /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}

  • Borrar /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}

  • OBTENER /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}

  • OBTENER /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings

  • OBTENER /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}

  • OBTENER /api/atlas/v2/orgs/{orgId}/federationSettings

  • PATCH /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}

  • publicación /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings

  • PUT /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}

Alcance: USUARIO

Capacidad: 300

Refill: 100/60s

Puntos finales:

  • Borrar /api/atlas/v2/federationSettings/{federationSettingsId}

  • Borrar /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}

  • Borrar /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks

  • OBTENER /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs

  • OBTENER /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders

  • OBTENER /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}

  • OBTENER /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml

  • PATCH /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}

  • publicación /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/flexClusters/{name}

  • OBTENER /api/atlas/v2/groups/{groupId}/flexClusters

  • OBTENER /api/atlas/v2/groups/{groupId}/flexClusters/{name}

  • PATCH /api/atlas/v2/groups/{groupId}/flexClusters/{name}

  • publicación /api/atlas/v2/groups/{groupId}/flexClusters

  • publicación /api/atlas/v2/groups/{groupId}/flexClusters:tenantUpgrade

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs

  • OBTENER /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs/{restoreJobId}

  • publicación /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/restoreJobs

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshots

  • OBTENER /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/snapshots/{snapshotId}

  • publicación /api/atlas/v2/groups/{groupId}/flexClusters/{name}/backup/download

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/ipAddresses

Alcance: ORGANIZACIÓN

Capacidad: 500

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage/{token}

  • OBTENER /api/atlas/v2/orgs/{orgId}/invoices

  • OBTENER /api/atlas/v2/orgs/{orgId}/invoices/pending

  • OBTENER /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}

  • OBTENER /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv

  • OBTENER /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems:search

  • publicación /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage

Alcance: USUARIO

Capacidad: 300

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2/skus

  • OBTENER /api/atlas/v2/skus/{skuId}

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping

  • OBTENER /api/atlas/v2/groups/{groupId}/userSecurity

  • OBTENER /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify/{requestId}

  • PATCH /api/atlas/v2/groups/{groupId}/userSecurity

  • publicación /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}

  • PATCH /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshotSchedule

  • PATCH /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/maintenanceWindow

  • OBTENER /api/atlas/v2/groups/{groupId}/maintenanceWindow

  • PATCH /api/atlas/v2/groups/{groupId}/maintenanceWindow

  • publicación /api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer

  • publicación /api/atlas/v2/groups/{groupId}/maintenanceWindow/defer

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/users/{userId}

  • OBTENER /api/atlas/v2/groups/{groupId}/users

  • OBTENER /api/atlas/v2/groups/{groupId}/users/{userId}

  • publicación /api/atlas/v2/groups/{groupId}/users

  • publicación /api/atlas/v2/groups/{groupId}/users/{userId}:addRole

  • publicación /api/atlas/v2/groups/{groupId}/users/{userId}:removeRole

  • PUT /api/atlas/v2/groups/{groupId}/users/{userId}/roles

Alcance: ORGANIZACIÓN

Capacidad: 500

Refill: 250/60s

Puntos finales:

  • Borrar /api/atlas/v2/orgs/{orgId}/users/{userId}

  • OBTENER /api/atlas/v2/orgs/{orgId}/users

  • OBTENER /api/atlas/v2/orgs/{orgId}/users/{userId}

  • PATCH /api/atlas/v2/orgs/{orgId}/users/{userId}

  • publicación /api/atlas/v2/orgs/{orgId}/users

  • publicación /api/atlas/v2/orgs/{orgId}/users/{userId}:addRole

  • publicación /api/atlas/v2/orgs/{orgId}/users/{userId}:removeRole

  • PUT /api/atlas/v2/orgs/{orgId}/users/{userId}/roles

Alcance: USUARIO

Capacidad: 2500

Refill: 2000/60s

Puntos finales:

  • OBTENER /api/atlas/v2/users/byName/{userName}

  • OBTENER /api/atlas/v2/users/{userId}

  • publicación /api/atlas/v2/users

Ámbito: GRUPO

Capacidad: 300

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics

  • OBTENER /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements

  • OBTENER /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements

  • OBTENER /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements

  • OBTENER /api/atlas/v2/groups/{groupId}/processes

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/databases

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/disks

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements

Ámbito: GRUPO

Capacidad: 2000

Refill: 1000/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/containers/{containerId}

  • Borrar /api/atlas/v2/groups/{groupId}/peers/{peerId}

  • OBTENER /api/atlas/v2/groups/{groupId}/containers

  • OBTENER /api/atlas/v2/groups/{groupId}/containers/all

  • OBTENER /api/atlas/v2/groups/{groupId}/containers/{containerId}

  • OBTENER /api/atlas/v2/groups/{groupId}/peers

  • OBTENER /api/atlas/v2/groups/{groupId}/peers/{peerId}

  • OBTENER /api/atlas/v2/groups/{groupId}/privateIpMode

  • PATCH /api/atlas/v2/groups/{groupId}/containers/{containerId}

  • PATCH /api/atlas/v2/groups/{groupId}/peers/{peerId}

  • PATCH /api/atlas/v2/groups/{groupId}/privateIpMode

  • publicación /api/atlas/v2/groups/{groupId}/containers

  • publicación /api/atlas/v2/groups/{groupId}/peers

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}

  • PATCH /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives

Alcance: ORGANIZACIÓN

Capacidad: 10

Refill: 5/60s

Puntos finales:

  • OBTENER /api/atlas/v2/orgs/{orgId}/settings

  • PATCH /api/atlas/v2/orgs/{orgId}/settings

Alcance: ORGANIZACIÓN

Capacidad: 500

Refill: 250/60s

Puntos finales:

  • Borrar /api/atlas/v2/orgs/{orgId}

  • Borrar /api/atlas/v2/orgs/{orgId}/invites/{invitationId}

  • OBTENER /api/atlas/v2/orgs/{orgId}

  • OBTENER /api/atlas/v2/orgs/{orgId}/groups

  • OBTENER /api/atlas/v2/orgs/{orgId}/invites

  • OBTENER /api/atlas/v2/orgs/{orgId}/invites/{invitationId}

  • PATCH /api/atlas/v2/orgs/{orgId}

  • PATCH /api/atlas/v2/orgs/{orgId}/invites

  • PATCH /api/atlas/v2/orgs/{orgId}/invites/{invitationId}

  • publicación /api/atlas/v2/orgs/{orgId}/invites

Alcance: USUARIO

Capacidad: 300

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2/orgs

  • publicación /api/atlas/v2/orgs

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/managedSlowMs/disable

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/dropIndexSuggestions

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/schemaAdvice

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/performanceAdvisor/suggestedIndexes

  • OBTENER /api/atlas/v2/groups/{groupId}/managedSlowMs

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs

  • OBTENER /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes

  • publicación /api/atlas/v2/groups/{groupId}/managedSlowMs/enable

Ámbito: GRUPO

Capacidad: 4000

Refill: 2000/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}

  • Borrar /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}

  • OBTENER /api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode

  • OBTENER /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService

  • OBTENER /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}

  • OBTENER /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}

  • PATCH /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService/{endpointServiceId}

  • PATCH /api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode

  • publicación /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService

  • publicación /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}

  • OBTENER /api/atlas/v2/groups/{groupId}/apiKeys

  • PATCH /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}

  • publicación /api/atlas/v2/groups/{groupId}/apiKeys

  • publicación /api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}

Alcance: ORGANIZACIÓN

Capacidad: 500

Refill: 250/60s

Puntos finales:

  • Borrar /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}

  • Borrar /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}

  • OBTENER /api/atlas/v2/orgs/{orgId}/apiKeys

  • OBTENER /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}

  • OBTENER /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList

  • OBTENER /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}

  • PATCH /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}

  • publicación /api/atlas/v2/orgs/{orgId}/apiKeys

  • publicación /api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/accessList/{entryValue}

  • OBTENER /api/atlas/v2/groups/{groupId}/accessList

  • OBTENER /api/atlas/v2/groups/{groupId}/accessList/{entryValue}

  • OBTENER /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status

  • publicación /api/atlas/v2/groups/{groupId}/accessList

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}

  • Borrar /api/atlas/v2/groups/{groupId}/invites/{invitationId}

  • Borrar /api/atlas/v2/groups/{groupId}/limits/{limitName}

  • OBTENER /api/atlas/v2/groups/{groupId}

  • OBTENER /api/atlas/v2/groups/{groupId}/invites

  • OBTENER /api/atlas/v2/groups/{groupId}/invites/{invitationId}

  • OBTENER /api/atlas/v2/groups/{groupId}/limits

  • OBTENER /api/atlas/v2/groups/{groupId}/limits/{limitName}

  • OBTENER /api/atlas/v2/groups/{groupId}/mongoDBVersions

  • OBTENER /api/atlas/v2/groups/{groupId}/settings

  • PATCH /api/atlas/v2/groups/{groupId}

  • PATCH /api/atlas/v2/groups/{groupId}/invites

  • PATCH /api/atlas/v2/groups/{groupId}/invites/{invitationId}

  • PATCH /api/atlas/v2/groups/{groupId}/limits/{limitName}

  • PATCH /api/atlas/v2/groups/{groupId}/settings

  • publicación /api/atlas/v2/groups/{groupId}/access

  • publicación /api/atlas/v2/groups/{groupId}/invites

  • publicación /api/atlas/v2/groups/{groupId}:migrate

Alcance: USUARIO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups

  • OBTENER /api/atlas/v2/groups/byName/{groupName}

  • publicación /api/atlas/v2/groups

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/logIntegrations/{id}

  • Borrar /api/atlas/v2/groups/{groupId}/pushBasedLogExport

  • OBTENER /api/atlas/v2/groups/{groupId}/logIntegrations

  • OBTENER /api/atlas/v2/groups/{groupId}/logIntegrations/{id}

  • OBTENER /api/atlas/v2/groups/{groupId}/pushBasedLogExport

  • PATCH /api/atlas/v2/groups/{groupId}/pushBasedLogExport

  • publicación /api/atlas/v2/groups/{groupId}/logIntegrations

  • publicación /api/atlas/v2/groups/{groupId}/pushBasedLogExport

  • PUT /api/atlas/v2/groups/{groupId}/logIntegrations/{id}

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapeInsights/summaries

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapeInsights/{queryShapeHash}/details

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes

  • OBTENER /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes/{queryShapeHash}

  • PATCH /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/queryShapes/{queryShapeHash}

Alcance: USUARIO

Capacidad: 300

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2/rateLimits

  • OBTENER /api/atlas/v2/rateLimits/{endpointSetId}

Alcance: ORGANIZACIÓN

Capacidad: 500

Refill: 250/60s

Puntos finales:

  • Borrar /api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}

  • OBTENER /api/atlas/v2/orgs/{orgId}/nonCompliantResources

  • OBTENER /api/atlas/v2/orgs/{orgId}/resourcePolicies

  • OBTENER /api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}

  • PATCH /api/atlas/v2/orgs/{orgId}/resourcePolicies/{resourcePolicyId}

  • publicación /api/atlas/v2/orgs/{orgId}/resourcePolicies

  • publicación /api/atlas/v2/orgs/{orgId}/resourcePolicies:validate

Alcance: IP

Capacidad: 400

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2/unauth/controlPlaneIPAddresses

Alcance: USUARIO

Capacidad: 300

Refill: 100/60s

Puntos finales:

  • OBTENER /api/atlas/v2

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}

  • Borrar /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessList/{ipAddress}

  • Borrar /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/secrets/{secretId}

  • OBTENER /api/atlas/v2/groups/{groupId}/serviceAccounts

  • OBTENER /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}

  • OBTENER /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessList

  • PATCH /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}

  • publicación /api/atlas/v2/groups/{groupId}/serviceAccounts

  • publicación /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/accessList

  • publicación /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}/secrets

  • publicación /api/atlas/v2/groups/{groupId}/serviceAccounts/{clientId}:invite

Alcance: ORGANIZACIÓN

Capacidad: 500

Refill: 250/60s

Puntos finales:

  • Borrar /api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}

  • Borrar /api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessList/{ipAddress}

  • Borrar /api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/secrets/{secretId}

  • OBTENER /api/atlas/v2/orgs/{orgId}/serviceAccounts

  • OBTENER /api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}

  • OBTENER /api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessList

  • OBTENER /api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/groups

  • PATCH /api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}

  • publicación /api/atlas/v2/orgs/{orgId}/serviceAccounts

  • publicación /api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/accessList

  • publicación /api/atlas/v2/orgs/{orgId}/serviceAccounts/{clientId}/secrets

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId}

  • Borrar /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}

  • Borrar /api/atlas/v2/groups/{groupId}/streams/{tenantName}

  • Borrar /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}

  • Borrar /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}

  • OBTENER /api/atlas/v2/groups/{groupId}/streams

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/accountDetails

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/activeVpcPeeringConnections

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections/{connectionId}

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/{tenantName}

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processors

  • OBTENER /api/atlas/v2/groups/{groupId}/streams/{tenantName}:downloadOperationalLogs

  • PATCH /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}

  • publicación /api/atlas/v2/groups/{groupId}/streams

  • publicación /api/atlas/v2/groups/{groupId}/streams/privateLinkConnections

  • publicación /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:accept

  • publicación /api/atlas/v2/groups/{groupId}/streams/vpcPeeringConnections/{id}:reject

  • publicación /api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections

  • publicación /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor

  • publicación /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start

  • publicación /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:startWith

  • publicación /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:stop

  • publicación /api/atlas/v2/groups/{groupId}/streams:withSampleConnections

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/teams/{teamId}

  • OBTENER /api/atlas/v2/groups/{groupId}/teams

  • OBTENER /api/atlas/v2/groups/{groupId}/teams/{teamId}

  • PATCH /api/atlas/v2/groups/{groupId}/teams/{teamId}

  • publicación /api/atlas/v2/groups/{groupId}/teams

Alcance: ORGANIZACIÓN

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/orgs/{orgId}/teams/{teamId}

  • Borrar /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}

  • OBTENER /api/atlas/v2/orgs/{orgId}/teams

  • OBTENER /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}

  • OBTENER /api/atlas/v2/orgs/{orgId}/teams/{teamId}

  • OBTENER /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users

  • PATCH /api/atlas/v2/orgs/{orgId}/teams/{teamId}

  • publicación /api/atlas/v2/orgs/{orgId}/teams

  • publicación /api/atlas/v2/orgs/{orgId}/teams/{teamId}/users

  • publicación /api/atlas/v2/orgs/{orgId}/teams/{teamId}:addUser

  • publicación /api/atlas/v2/orgs/{orgId}/teams/{teamId}:removeUser

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/integrations/{integrationType}

  • OBTENER /api/atlas/v2/groups/{groupId}/integrations

  • OBTENER /api/atlas/v2/groups/{groupId}/integrations/{integrationType}

  • publicación /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index

  • publicación /api/atlas/v2/groups/{groupId}/integrations/{integrationType}

  • PUT /api/atlas/v2/groups/{groupId}/integrations/{integrationType}

Ámbito: GRUPO

Capacidad: 1200

Refill: 500/60s

Puntos finales:

  • Borrar /api/atlas/v2/groups/{groupId}/userSecurity/customerX509

  • OBTENER /api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs

  • publicación /api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs

Nota

Si contactaste al soporte para obtener límites de tasa más altos, es posible que tengas límites diferentes a los descritos en la tabla anterior.