Use the Mautic API to manage your Multiple Transports for advanced email routing and delivery.
Authorization: Bearer YOUR_ACCESS_TOKEN
multipleTransports
.{id}
(integer, required): The ID of the transport you want to retrieve.name
(string, required): The name for the new transport.description
(string, optional): A brief description of the transport’s purpose.mailerDsn
(string, required): The DSN string for the mailer.testedEmailFrom
(string, optional): Email address used for testing.isPublished
(boolean, optional): Whether the transport is enabled.GET /api/multipleTransports/{id}
.
{id}
(integer, required): The ID of the transport to edit.name
(string, optional): The updated name for the transport.description
(string, optional): The updated description.mailerDsn
(string, optional): The updated DSN string.testedEmailFrom
(string, optional): The updated test email address.isPublished
(boolean, optional): Whether the transport is enabled.{id}
(integer, required): The ID of the transport to delete.{emailId}
(integer, required): The ID of the email to assign the transport to.transportId
(integer, required): The ID of the transport to assign.useOwnerTransport
(boolean, optional): Whether to use the owner’s transport.{userId}
(integer, required): The ID of the user to assign the transport to.transportId
(integer, required): The ID of the transport to assign.{id}
(integer, required): The ID of the transport to test.Operation | Method | Path |
---|---|---|
List all transports | GET | /api/multipleTransports |
Get specific transport | GET | /api/multipleTransports/{id} |
Create transport | POST | /api/multipleTransports/new |
Update transport | PATCH | /api/multipleTransports/{id}/edit |
Delete transport | DELETE | /api/multipleTransports/{id}/delete |
Assign to email | POST | /api/multipleTransport/transportEmail/{emailId} |
Assign to user | POST | /api/multipleTransport/transportUser/{userId} |
Test transport | POST | /api/multipleTransports/send/test/{id} |
multipleTransport
(singular) while others use multipleTransports
(plural). This is the actual API implementation.