InformationTitleRecently Released - 28th May 2023 - New Transmit dashboards and Conversr webhooksURL NameRecently-Released-28-May-2023AnswerTransmit New Features: New dashboard reporting We have been consistently enhancing the experience of our v2 API for customers. As a component of these ongoing improvements, we've introduced a fresh dashboard for visualizing the message statistics associated with the usage of our v2 APIs. This comprehensive report, accessed via your API key, presents the following vital details: Date the message was sent or receivedSender's contact detailsRecipient's contact detailsDistinction between incoming and outgoing messagesComplete message contentCount of message parts comprising the messageDelivery statusCorresponding reference number This addition to our API infrastructure aims to provide you with a more insightful and actionable overview of your messaging activities.Here is the link to access the report: click here . Conversr New features We've released new API endpoints to make it easier to integrate with Conversr. Get Touchpoint API Returns touchpoint details for a single touchpoint.Request: GET api.transmitmessage.com/v1/touchpoint/96e9224c-3d40-45b3-ad73-8494d2598342Response:{ "id": "96e9224c-3d40-45b3-ad73-8494d2598342", "account_id": "1122334", "name": "Email Cleanse", "type": "automated_email_cleanse", "tone": "informal", "status": "active", "operator_name": "Tom", "company_name": "ACME Co", "sender_address": "61412341234", "created_at": "2023-05-08T22:45:50.001296Z", "updated_at": "2023-05-08T22:45:51.59351Z", "start": "2023-05-08T22:45:51.593507Z", "contact_import_id": "7123456", "contact_import_source": "transmit", "mode": "live", "operator_email": "tom@acme.com"} Update Touchpoint API Changes the touchpoint details of a single touchpoint. For example, a mistake was made when creating a touchpoint, and the name needs to be updated. Instead of deleting and recreating the touchpoint with the correct details, a user can submit the following request to update an existing touchpoint:{ "id": "96e9224c-3d40-45b3-ad73-8494d2598342", "account_id": "1122334", "name": "Email Cleanse April 23", "type": "automated_email_cleanse", "tone": "informal", "status": "active", "operator_name": "Tom", "company_name": "ACME Co", "sender_address": "61412341234", "created_at": "2023-05-08T22:45:50.001296Z", "updated_at": "2023-05-08T22:45:51.59351Z", "start": "2023-05-08T22:45:51.593507Z", "contact_import_id": "7123456", "contact_import_source": "transmit", "mode": "live", "operator_email": "tom@acme.com""}Request:PUT api.transmitmessage.com/v1/touchpoint/96e9224c-3d40-45b3-ad73-8494d2598342Body:{ "id": "96e9224c-3d40-45b3-ad73-8494d2598342", "account_id": "1122334", "name": "Email Cleanse May 2023", "type": "automated_email_cleanse", "tone": "informal", "status": "active", "operator_name": "Tom", "company_name": "ACME Co", "sender_address": "61412341234", "created_at": "2023-05-08T22:45:50.001296Z", "updated_at": "2023-05-08T22:45:51.59351Z", "start": "2023-05-08T22:45:51.593507Z", "contact_import_id": "7123456", "contact_import_source": "transmit", "mode": "live", "operator_email": "tom@acme.com"}Response:{ "id": "96e9224c-3d40-45b3-ad73-8494d2598342", "account_id": "1122334", "name": "Email Cleanse May 23", "type": "automated_email_cleanse", "tone": "informal", "status": "active", "operator_name": "Tom", "company_name": "ACME Co", "sender_address": "61412341234", "created_at": "2023-05-08T22:45:50.001296Z", "updated_at": "2023-05-08T22:45:51.59351Z", "start": "2023-05-08T22:45:51.593507Z", "contact_import_id": "7123456", "contact_import_source": "transmit", "mode": "live", "operator_email": "tom@acme.com""} Delete Touchpoint API Deletes a touchpoint which removes it from all API responses and the user interface. Touchpoints must be in either draft or canceled status to be deleted. An active touchpoint cannot be deleted, and must first be canceled and then deleted.Request:DELETE api.transmitmessage.com/v1/touchpoint/96e9224c-3d40-45b3-ad73-8494d2598342Response:{ "message": "touchpoint deleted"} Enhancements All contact details added to CSV Report by default We now include all contact details in the CSV report by default, including custom contact fields. Fixes Updated the font for text inputs and select/dropdowns, and fixed the fill color of the settings icon when selected.The “View report” button is now correctly shown as inactive for campaigns in Draft status.