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/users/public \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"username": null,
"password": null,
"roles": [
null
]
}'
{ "username": {}, "roles": null, "scopes": [] }
curl -i -X GET \
https://matric-docs.redocly.app/_mock/openapi/users \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
[ { "username": {}, "roles": null, "scopes": [] } ]
curl -i -X POST \
https://matric-docs.redocly.app/_mock/openapi/users \
-H 'Content-Type: application/json' \
-d '{
"username": null,
"password": null,
"roles": [
null
]
}'
{ "username": {}, "roles": null, "scopes": [] }
curl -i -X GET \
'https://matric-docs.redocly.app/_mock/openapi/users/{username}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "username": {}, "roles": null, "scopes": [] }
curl -i -X PUT \
'https://matric-docs.redocly.app/_mock/openapi/users/{username}' \
-H 'Content-Type: application/json' \
-d '{
"password": {},
"roles": [
null
]
}'
{ "username": {}, "roles": null, "scopes": [] }
curl -i -X DELETE \
'https://matric-docs.redocly.app/_mock/openapi/users/{username}'
null
curl -i -X GET \
https://matric-docs.redocly.app/_mock/openapi/users/me
{ "username": {}, "roles": null, "scopes": [] }