AgentsAgentidTests
Attach a set of tests to an agent. Duplicates in the list are allowed by design — each entry becomes its own attachment row.
Authorization
Bearer AuthorizationBearer <token>
JWT Authorization header using Bearer scheme
In: header
Path Parameters
agentId*string
Format
uuidRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
curl -X POST "https://api.speaknode.com/api/agents/497f6eca-6276-4993-bfeb-53cbbbba6f08/tests" \ -H "Content-Type: application/json" \ -d '{}'Empty
List tests attached to an agent. Returns thin AgentTest links (Id, AgentId, TestId, CreatedAt); the client fetches the test details separately via M:AspNetBackend.API.Controllers.TestsController.GetTests(System.Nullable{AspNetBackend.Domain.Enums.TestType}) or M:AspNetBackend.API.Controllers.TestsController.GetTest(System.Guid). GET
Previous Page
/Agents/duplicate POST
Next Page