GET
/
nodes
/
{id}
/
permissions
List Permissions for a Node
curl --request GET \
  --url https://api.seminode.com/v1/nodes/{id}/permissions \
  --header 'Authorization: <api-key>'
[
  {
    "manage": true,
    "public_key": "<string>",
    "read": true,
    "write": true
  }
]

Authorizations

Authorization
string
header
required

Format: "Bearer <access_token>"

Path Parameters

id
string
required

Node ID

Response

200
application/json

list of permissions

The response is of type object[].