Skip to main content

What options do I have for Date Formats in Pinpoint?

Peter Flickinger avatar
Written by Peter Flickinger
Updated this week

Within Pinpoint, dates are typically returned in the international format, where the year comes first, followed by the month, and then the day (for example: 21 October, 2025).

If you’re creating an email template or document, you can customize how any date variable is displayed. This can help you match local preferences, such as showing dates in US or UK format.


How Can I Format a Date Variable?

When inserting a date variable, use the date filter to reformat it.
Here’s the basic syntax:

{{ date_variable | date: "FORMAT" }}

For example:

{{ date_today | date: "%m/%d/%Y" }}

Would display:

10/21/2025

Common Date Format Options

You can choose from several styles depending on your audience or region.Replace
Here are some examples you can copy and paste directly into your templates:

US Formats (Month / Day / Year)

Style

Example

Format

Numeric (slashes)

10/21/2025

"%m/%d/%Y"

Numeric (dashes)

10-21-2025

"%m-%d-%Y"

Abbreviated month

Oct 21, 2025

"%b %d, %Y"

Full month name

October 21, 2025

"%B %d, %Y"

With weekday

Tuesday, October 21, 2025

"%A, %B %d, %Y"

ISO-like (US order)

2025/10/21

"%Y/%m/%d"

UK Formats (Day / Month / Year)

Style

Example

Format

Numeric (slashes)

21/10/2025

"%d/%m/%Y"

Numeric (dashes)

21-10-2025

"%d-%m-%Y"

Abbreviated month

21 Oct 2025

"%d %b %Y"

Full month name

21 October 2025

"%d %B %Y"

With weekday

Tuesday, 21 October 2025

"%A, %d %B %Y"

International / Neutral Formats

Style

Example

Format

ISO 8601

2025-10-21

"%Y-%m-%d"

Compact numeric

20251021

"%Y%m%d"

Short year

21/10/25

"%d/%m/%y"


What date formatting rules apply to Interviews?

Interview scheduling emails always display in full date format. This includes the candidate’s time zone (which they pick when scheduling a slot), so both sides see the correct local time. For example, an Interview Confirmation email will say:

The interview is scheduled for 7:00am on Tuesday 21 October 2025 (Mountain Daylight Time).

Did this answer your question?