mATRIC API for managing users, agents, and third-party apps.
License MIT
mATRIC API for managing users, agents, and third-party apps.
curl -i -X POST \
https://matric-docs.redocly.app/_mock/openapi/agents/public \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"ap_id": null,
"password": null,
"configuration": null
}'
{ "id": null, "ap_id": null, "configuration": null }
curl -i -X POST \
https://matric-docs.redocly.app/_mock/openapi/agents \
-H 'Content-Type: application/json' \
-d '{
"ap_id": null,
"password": null,
"configuration": null
}'
{ "id": null, "ap_id": null, "configuration": null }
curl -i -X GET \
'https://matric-docs.redocly.app/_mock/openapi/agents/{ap_id}'
{ "id": null, "ap_id": null, "configuration": null }
curl -i -X PUT \
'https://matric-docs.redocly.app/_mock/openapi/agents/{ap_id}' \
-H 'Content-Type: application/json' \
-d '{
"password": {},
"configuration": {}
}'
{ "id": null, "ap_id": null, "configuration": null }
curl -i -X DELETE \
'https://matric-docs.redocly.app/_mock/openapi/agents/{ap_id}'
null