cURL
curl --request GET \ --url https://api.example.com/exo-api/resources
{ "data": [ { "name": "<string>", "model": "<string>", "triggers": [ {} ] } ] }
Returns all registered Exo resources and their metadata.
curl -H "Authorization: Bearer YOUR_TOKEN" \ https://your-app.com/exo-api/resources
Show child attributes
on_create
on_update
on_delete
{ "data": [ { "name": "contact", "model": "App\\Models\\Contact", "triggers": ["on_create", "on_update", "on_delete"] }, { "name": "order", "model": "App\\Models\\Order", "triggers": ["on_create", "on_update"] } ] }