9. API

SonataNotificationBundle embeds a Controller to provide an API through FOSRestBundle, with its documentation provided by NelmioApiDocBundle.

9.1. Setup

API is only available with sonata.notification.backend.doctrine as notification backend.

If you wish to use it, you must first follow the installation instructions of both bundles:

Here’s the configuration we used, you may adapt it to your needs:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
fos_rest:
    param_fetcher_listener: true
    body_listener: true
    format_listener: true
    view:
        view_response_listener: force
    body_converter:
        enabled: true
        validate: true

sensio_framework_extra:
    view: { annotations: false }
    router: { annotations: true }
    request: { converters: true }

twig:
    exception_controller: null

framework:
    error_controller: 'FOS\RestBundle\Controller\ExceptionController::showAction'

In order to activate the API’s, you’ll also need to add this to your routing:

1
2
3
sonata_api_notification:
    prefix: /api/notification
    resource: "@SonataNotificationBundle/Resources/config/routing/api_nelmio_v3.xml"

9.2. Serialization

We’re using JMSSerializationBundle’s serialization groups to customize the inputs and outputs.

The taxonomy is as follows:

  • sonata_api_read is the group used to display entities
  • sonata_api_write is the group used for input entities (when used instead of forms)

If you wish to customize the outputted data, feel free to set up your own serialization options by configuring JMSSerializer with those groups.