List Environment Nodes
GEThttps://app.coalescesoftware.io/api/v1/environments/:environmentID/nodes
Get a collection of Nodes for an Environment.
Request
Path Parameters
The environment ID.
Query Parameters
Include the full detail of the nodes.
false
Possible values: >= 1
and <= 500
The maximum number of Nodes to return. Between 1 and 500.
100
The cursor point for paging the query results.
The field to order the results by. Only id
allowed.
id
Responses
- 200
- 400
- 401
- 403
- 404
- 500
- 502
- 503
- 504
- application/json
- Schema
- Example (auto)
- Nodes Response
Schema
data objectrequired
The size of the result set.
The cursor value used in the request.
The requested page size.
The field value where the next page of result starts after.
The field to order the results by. Only id
allowed.
{
"data": [
{
"database": "string",
"id": "string",
"locationName": "string",
"name": "string",
"schema": "string"
}
],
"total": 0,
"startingFrom": "string",
"limit": 0,
"next": "string",
"orderBy": "string"
}
{
"data": [
{
"database": "string",
"id": "string",
"locationName": "string",
"name": "string",
"nodeType": "Dimension",
"schema": "string"
}
]
}
The request was invalid.
- application/json
- Schema
- Example (auto)
- Invalid Request Error
Schema
error objectrequired
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
User lacks authorization to perform this action.
- application/json
- Schema
- Example (auto)
- Unauthorized
Schema
error objectrequired
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
The client is not permitted to perform the requested operation.
- application/json
- Schema
- Example (auto)
- Forbidden Error
Schema
error objectrequired
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
The requested resource could not be found.
- application/json
- Schema
- Example (auto)
- Not Found Error
Schema
error objectrequired
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
The server encountered an unexpected condition that prevented it from fulfilling the request.
- application/json
- Schema
- Example (auto)
- Internal Server Error
Schema
error objectrequired
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
The server received an error from an upstream system.
- application/json
- Schema
- Example (auto)
- Bad Gateway Error
Schema
error objectrequired
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
The service is currently unavailable.
- application/json
- Schema
- Example (auto)
- Service Unavailable Error
Schema
error objectrequired
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
The server did not receive a response in time from an upstream system.
- application/json
- Schema
- Example (auto)
- Gateway Timeout Error
Schema
error objectrequired
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
{
"error": {
"errorString": "string",
"errorDetail": "string"
}
}
Authorization: http
name: BearerAuthtype: httpscheme: bearer
- curl
- python
- powershell
- php
- nodejs
- r
- javascript
- CURL
curl -L 'https://app.coalescesoftware.io/api/v1/environments/:environmentID/nodes' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'