v1

latestOpenAPI 3.0.42026-08-064075233.0 KB
EdgeNodes

Get parameter overrides for a specific node

Returns a list of all parameter overrides connected to the specified node.

get/api/edgenodes/{edgeNodeId}/overrides

Path parameters

edgeNodeIdstring uuid required

The identifier for the node that we want to find parameter overrides that are connected to.

Response

OK

idstring nullable

The identifier of the parameter.

typestring nullable

The type of the parameter. Available values are String, Number, Boolean, Credential, Resource, Integer and Object.

organizationIdstring uuid

The identifier of the organization.

createdAtstring date-time

The time the parameter was created.

createdBystring uuid

The user that created the parameter.

updatedAtstring date-time

The time the parameter was last updated.

updatedBystring uuid

The user that last updated the parameter.

edgeNodeIdstring uuid

The identifier of the node.

Example response

[
  {
    "id": "My parameter",
    "type": "String",
    "organizationId": "8c84e649-1669-428c-8506-47b0815180e8",
    "createdAt": "2024-09-24T09:33:38.013347Z",
    "createdBy": "256f791c-fbc0-4435-9429-d291227f6577",
    "updatedAt": "2024-09-24T09:33:38.013347Z",
    "updatedBy": "256f791c-fbc0-4435-9429-d291227f6577",
    "edgeNodeId": "88cd62fa-6cb1-43d3-b243-787bd6ec8041"
  }
]