New Basic Editor - Basic Editor Paid Members Public
When the new Basic Editor first opens, you will be presented with this view (Fig 1): Fig 1 At the top of the page are familiar buttons currently available in the WYSIWYG Editor: * Inbox Preview: Opens up a third-party preview tool hosted by Litmus; this is essentially the same type
New Basic Editor - Overview Paid Members Public
The New Basic Editor has a more modern UI making it easier to use. Unlike the old WYSIWYG Editor, the Basic Editor has been broken up into 2 tools: * Basic Editor: Use Pinpointe's editing toolbar to insert content or change to "Code View" to directly type
New Drag & Drop Builder - Overview Paid Members Public
The New Drag & Drop Builder tool provides a more modern UI for creating email campaigns in Pinpointe while improving overall functionality. Although the basic structural layout remains mostly the same as the current D&D Builder, there are changes to various icons, their placement, and so on. We
API - Date Formats Paid Members Public
When using dates in APIs, the preferred format is Zulu time, which can be presented in one of the following ways: * 2025-08-19T16:03:59.123Z * 1467331200.123456 Although other date formats can be used such as YYYYMMDD, we are discouraging users from doing so as this format may be deprecated
API - Update Content Blocks Paid Members Public
This API updates content blocks. Note: If you are editing a more complex Content Block in the content field that requires double quotes in it, they must be entered and exited with a backslash Example: content: "{{#if (eq [First-Name] \"Tommy\")}}<p>Hello there. {{[First-Name]}}<
API - Get Content Blocks Paid Members Public
Returns a list of content blocks. { "//DOC": [ "ContentBlock::Debug", "", "Return a list of content blocks." ], "username": "matbt@pinpointe.com", "usertoken": "XXX", "requesttype": "ContentBlock", "requestmethod": "GetContentBlocks", "
API - Delete Content Blocks Paid Members Public
This API deletes content blocks. { "//DOC": [ "ContentBlock::DeleteContentBlock", "", "Delete a content block.", "", " id [int, required]: content block id" ], "username": "johnsmith@pinpointe.com", "usertoken": "XXX", "requesttype": "ContentBlock"
API - Create Content Blocks Paid Members Public
Note: If you are entering a more complex Content Block in the content field that requires double quotes in it, they must be entered and exited with a backslash Example: content: "{{#if (eq [First-Name] "Tommy")}}Hello there. {{[First-Name]}}{{else}}What is your name?{{/if}}" { "//DOC&