json-api-server/docs/show.md

323 B

Showing Resources

For each resource type, a GET /{type}/{id} endpoint is exposed to show an individual resource.

Events

show

Run after the model has been retrieved, but before it is serialized into a JSON:API document.

$type->show(function (&$model, Context $context) {
    // do something
});