enbbox 1.0.1

Notification infrastructure API — open-source alternative to Novu/Courier
Documentation
# \NotificationsApi

All URIs are relative to *https://api.enbbox.com*

Method | HTTP request | Description
------------- | ------------- | -------------
[**get_notification**]NotificationsApi.md#get_notification | **GET** /v1/notifications/{id}/ | GET /v1/notifications/:id
[**get_notification_jobs**]NotificationsApi.md#get_notification_jobs | **GET** /v1/notifications/{id}/jobs/ | GET /v1/notifications/:id/jobs
[**list_notifications**]NotificationsApi.md#list_notifications | **GET** /v1/notifications/ | GET /v1/notifications



## get_notification

> models::NotificationLog get_notification(id)
GET /v1/notifications/:id

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **uuid::Uuid** | Notification ID | [required] |

### Return type

[**models::NotificationLog**](NotificationLog.md)

### Authorization

[bearer_auth](../README.md#bearer_auth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_notification_jobs

> Vec<models::JobLog> get_notification_jobs(id)
GET /v1/notifications/:id/jobs

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**id** | **uuid::Uuid** | Notification ID | [required] |

### Return type

[**Vec<models::JobLog>**](JobLog.md)

### Authorization

[bearer_auth](../README.md#bearer_auth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## list_notifications

> models::PaginatedNotificationLog list_notifications(limit, offset, q, filter_by)
GET /v1/notifications

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**limit** | Option<**u32**> | Maximum number of items to return (1–100, default: 10). |  |
**offset** | Option<**u32**> | Number of items to skip before returning results (default: 0). |  |
**q** | Option<**String**> | Optional full-text search query. When present, listing is powered by Typesense full-text search. |  |
**filter_by** | Option<**String**> | Optional Typesense filter expression for narrowing results. Example: `identifier:=acme-corp` or `name:=General`. |  |

### Return type

[**models::PaginatedNotificationLog**](Paginated_NotificationLog.md)

### Authorization

[bearer_auth](../README.md#bearer_auth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)