PrimebrickPrimebrick
  • Primebrick.dev
  • GitHub
  • Documentation
  • Services
  • Libraries
  • API Catalog
Resources
  • Landing Page
  • API Catalog
  • GitHub
PrimebrickPrimebrick

© 2026 Primebrick. MIT License.

github
Information
Other endpoints
    List all email providersgetCreate a new email providerpostGet a single email providergetUpdate an email providerputDelete an email provider (soft-delete)delete
powered by Zudoku
EmailSender Microservice API
EmailSender Microservice API

Other endpoints

Download schema

List all email providers

GET
/api/v1/providers

List all email providers › Responses

200

List of providers

No data returned
GET/api/v1/providers
fetch('/api/v1/providers')
Example Responses
No example specified for this content type

Create a new email provider

POST
/api/v1/providers

Create a new email provider › Responses

Provider created

No data returned
POST/api/v1/providers
fetch('/api/v1/providers', { method: 'POST' })
Example Responses
No example specified for this content type

Get a single email provider

GET
/api/v1/providers/{uuid}

Get a single email provider › Responses

200

Provider details

No data returned
GET/api/v1/providers/{uuid}
fetch('/api/v1/providers/:uuid')
Example Responses
No example specified for this content type

Update an email provider

PUT
/api/v1/providers/{uuid}

Update an email provider › Responses

200

Provider updated

No data returned
PUT/api/v1/providers/{uuid}
fetch('/api/v1/providers/:uuid', { method: 'PUT' })
Example Responses
No example specified for this content type

Delete an email provider (soft-delete)

DELETE
/api/v1/providers/{uuid}

Delete an email provider (soft-delete) › Responses

Provider deleted

No data returned
DELETE/api/v1/providers/{uuid}
fetch('/api/v1/providers/:uuid', { method: 'DELETE' })
Example Responses
No example specified for this content type