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/third_party_apps \
-H 'Content-Type: application/json' \
-d '{
"app_name": null,
"api_key": null,
"permissions": null
}'
{ "id": null, "app_name": null, "api_key": null, "permissions": null }
curl -i -X GET \
'https://matric-docs.redocly.app/_mock/openapi/third_party_apps/{app_name}'
{ "id": null, "app_name": null, "api_key": null, "permissions": null }
curl -i -X PUT \
'https://matric-docs.redocly.app/_mock/openapi/third_party_apps/{app_name}' \
-H 'Content-Type: application/json' \
-d '{
"api_key": {},
"permissions": {}
}'
{ "id": null, "app_name": null, "api_key": null, "permissions": null }
curl -i -X DELETE \
'https://matric-docs.redocly.app/_mock/openapi/third_party_apps/{app_name}'
null