curl --request POST \
--url https://api.seminode.com/v1/nodes/{id}/permissions \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"manage": true,
"public_key": "<string>",
"read": true,
"write": true
}
'{
"detail": "<string>"
}Adds the specified public key to the deployment’s permission list with read/write auth.
curl --request POST \
--url https://api.seminode.com/v1/nodes/{id}/permissions \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"manage": true,
"public_key": "<string>",
"read": true,
"write": true
}
'{
"detail": "<string>"
}Was this page helpful?