This Payload CMS plugin uses libphonenumber-js to format and validate phone numbers.
- Format phone numbers to multiple formats (E.164, national, international)
- As-you-type formatting based on selected country
- Validates phone numbers based on selected country
- Support for limiting selection to only some countries
- Support for setting a default country
- Automatic formatting and region detection when pasting international phone numbers
- Full TypeScript support with generated phone number types
- Built with Payload UI components so it feels native to the Admin Panel
- i18n support for validation messages (PRs for new languages are welcome)
Install the payload-phone-number-plugin package into your project
pnpm install payload-phone-number-pluginAdd the plugin to your Payload Config:
import { phoneNumberPlugin } from 'payload-phone-number-plugin';
export const config = buildConfig({
plugins: [
phoneNumberPlugin(),
]
});Then you can use the phone number field:
import { phoneNumberField } from 'payload-phone-number-plugin';
const Employees: CollectionConfig = {
slug: 'employees',
fields: [
phoneNumberField({
name: 'phoneNumber',
label: 'Phone Number',
required: true,
}),
]
};Note
Remember to update your importMap with generate:importmap since this plugin adds a custom component
| Name | Type | Required | Description | Default |
|---|---|---|---|---|
defaultCountry |
RegionCode |
false |
The default country region code for the field (ISO 3166-1 alpha-2) | 'US' |
allowedCountries |
RegionCode[] |
false |
Array of allowed country codes. If specified, restricts user selection to these countries only | |
admin.cellDisplayFormat |
'e164' | 'national' | 'international' |
false |
The format to display phone numbers in table cells | 'international' |
admin.countryPrefixDisplayFormat |
'flagEmoji' | 'callingCode' | 'flagEmojiAndCallingCode' |
false |
The format to display the country prefix next to the field input | 'flagEmojiAndCallingCode' |
phoneNumberField({
name: 'phoneNumber',
label: 'Phone Number',
defaultCountry: 'NO', // Norway will be pre-selected
})phoneNumberField({
name: 'phoneNumber',
label: 'Phone Number',
allowedCountries: ['NO', 'US', 'SE'], // Only these countries will be selectable
})phoneNumberField({
name: 'phoneNumber',
label: 'Phone Number',
defaultCountry: 'NO', // Norway will be pre-selected
allowedCountries: ['NO', 'US', 'SE'], // Only these countries will be selectable
})phoneNumberField({
name: 'phoneNumber',
label: 'Phone Number',
admin: {
cellDisplayFormat: 'e164', // Display as +4712345678 in table cells
},
})phoneNumberField({
name: 'phoneNumber',
label: 'Phone Number',
admin: {
countryPrefixDisplayFormat: 'callingCode', // Display only +47 (no flag emoji)
},
})When creating or updating documents, pass the phone number as an E.164 string directly. Phone numbers are stored in E.164 format in the database.
The field will handle parsing and validation so it won't save unless it's a valid phone number for that field.
await payload.create({
collection: 'employees',
data: {
phoneNumber: '+4712345678'
}
})await fetch('http://localhost:3000/api/employees', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
phoneNumber: '+4712345678'
})
})Note
You cannot pass a phone number object, only E.164 strings are accepted.
When using payload.find or database queries, use the E.164 format:
const employees = await payload.find({
collection: 'employees',
where: {
phoneNumber: {
equals: '+4712345678'
}
}
})The same applies when using the REST API.
The field is typed as string | PhoneNumber, similar to Payload's relationship fields with depth.
This is because phone numbers are stored as strings in the database but are transformed into objects when you read them using libphonenumber.
export interface PhoneNumber {
e164: string;
regionCode: string;
callingCode: string;
national: string;
international: string;
}
export interface Employee {
phoneNumber: string | PhoneNumber;
}Example response:
{
"phoneNumber": {
"e164": "+4712345678",
"regionCode": "NO",
"callingCode": "+47",
"national": "12 34 56 78",
"international": "+47 12 34 56 78"
}
}If you need to access the raw phone number value you can use context when you query:
const employees = await payload.find({
collection: 'employees',
where: {
phoneNumber: {
equals: '+4712345678'
}
},
context: {
phoneNumberPluginReturnRawValue: true,
},
})Example response:
{
"phoneNumber": "+4712345678"
}A region code is an ISO 3166-1 alpha-2 code.
List of all valid region codes can be found here: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements
