Return All Private Endpoints for One Serverless Instance
On this page
Note
Groups and projects are synonymous terms. Your {GROUP-ID}
is the
same as your project ID. For existing groups, your group/project ID
remains the same. The resource and corresponding endpoints use the
term groups
.
Return details for all private endpoints for one Atlas serverless instance. Serverless instances support private endpoints on AWS only.
The Atlas Administration API authenticates using HTTP Digest Authentication. Provide a programmatic API public key and corresponding private key as the username and password when constructing the HTTP request. To learn how to configure API access for an Atlas project, see Get Started with the Atlas Administration API.
Required Roles
You must have at least the Project Read Only
role for the
project to successfully call this resource.
Request
https://cloud.mongodb.com/api/atlas/v1.0
GET /groups/{GROUP-ID}/privateEndpoint/serverless/instance/ {INSTANCE-NAME}/endpoint
Request Path Parameters
Path Parameter | Type | Necessity | Description |
---|---|---|---|
{GROUP-ID} | string | Required | Unique 24-hexadecimal digit string that identifies your
project. |
{INSTANCE-NAME} | string | Required | Human-readable label that identifies the serverless instance
associated with the tenant endpoint. |
Request Query Parameters
This endpoint might use any of the HTTP request query parameters available to all Atlas Administration API resources. All of these are optional.
Name | Type | Necessity | Description | Default | ||||||
---|---|---|---|---|---|---|---|---|---|---|
pretty | boolean | Optional | Flag indicating whether the response body should be in a
prettyprint format. | false | ||||||
envelope | boolean | Optional | Flag indicating if Atlas should wrap the response in a JSON envelope. This option may be needed for some API clients. These clients cannot access the HTTP response headers or status code. To remediate this, set envelope=true in the query. For endpoints that return one result, the response body includes:
| false |
Request Body Parameters
This endpoint doesn't use HTTP request body parameters.
Response Elements
Response Document
The response JSON document includes an array of result objects, an array of link objects and a count of the total number of result objects retrieved.
Name | Type | Description |
---|---|---|
results | array of objects | One object for each item detailed in the
results Embedded Document
section. |
links | array of objects | One or more links to sub-resources and/or related resources. The relations between URLs are explained in the Web Linking Specification |
totalCount | integer | Count of the total number of items in the result set. It may
be greater than the number of objects in the results
array if the entire result set is paginated. |
results Embedded Document
Response Parameter | Type | Description |
---|---|---|
_id | string | Unique 24-hexadecimal digit string that identifies the private
endpoint. |
cloudProviderEndpointId | string | Unique string that identifies the private endpoint's network
interface. |
comment | string | Human-readable statement associated with the private endpoint. |
endpointServiceName | string | Unique string that identifies the PrivateLink endpoint service.
MongoDB Cloud returns null while it creates the endpoint
service. |
errorMessage | string | Human-readable error message that indicates the error condition
associated with establishing the private endpoint connection. |
status | string | Human-readable label that indicates the current operating status
of the private endpoint. Values include:
RESERVATION_REQUESTED , RESERVED , INITIATING ,
AVAILABLE , FAILED , DELETING . |
Example Request
1 curl --user "{PUBLIC-KEY}:{PRIVATE-KEY}" --digest \ 2 --header "Accept: application/json" \ 3 --request GET "https://cloud.mongodb.com/api/atlas/v1.0/groups/{GROUP-ID}/privateEndpoint/serverless/instance/ 4 {INSTANCE-NAME}/endpoint?pretty=true"
Example Response
1 [ 2 { 3 "_id": "5f7cac1adf5d6c6306f4b283", 4 "cloudProviderEndpointId": "vpce-fcac938279cd98dc894", 5 "comment": "example comment", 6 "endpointServiceName": "com.amazonaws.vpce.us-east-1.vpce-svc-0afd34ee97e30d43f", 7 "errorMessage": null, 8 "status": "AVAILABLE" 9 }, 10 { 11 "_id": "578faa1adf5d6c6306f4b283", 12 "cloudProviderEndpointId": "vpce-fcac938279cd98dc894", 13 "comment": "example comment", 14 "endpointServiceName": "com.amazonaws.vpce.us-east-1.vpce-svc-0afd34ee97e30d43f", 15 "errorMessage": null, 16 "status": "AVAILABLE" 17 } 18 ]