Skip to main content
PUT
/
protocol
/
agents
/
{agentId}
Update Agent
curl --request PUT \
  --url https://api.sandbox.nevermined.dev/api/v1/protocol/agents/{agentId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "tags": [
    "<string>"
  ],
  "endpoints": [
    {}
  ]
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Your Nevermined API Key (starts with 'nvm:'). Get one at nevermined.app under Settings > API Keys.

Path Parameters

agentId
string
required

The agent's unique identifier

Body

application/json

Updated agent metadata

name
string
description
string
tags
string[]
endpoints
object[]

Response

Agent updated

success
boolean
Example:

true