Skip to main content

The IPWhitelistEntry object

Represents an IP address in the whitelist. IP whitelisting restricts API access to specific IP addresses for enhanced security.

Fields

FieldTypeDescription
id
REQUIRED
stringUnique identifier for the whitelist entry
merchantId
REQUIRED
stringID of the merchant this entry belongs to
ipAddress
REQUIRED
stringWhitelisted IP address (IPv4 or IPv6)
description
OPTIONAL
stringDescription to identify this IP address
isActive
REQUIRED
booleanWhether this whitelist entry is active
createdBy
REQUIRED
stringUser ID who created this entry
createdAt
REQUIRED
stringISO 8601 timestamp when the entry was created

Example

{
"id": "obj_1a2b3c",
"merchantId": "merchant_1a2b3c",
"ipAddress": "string",
"description": "string",
"isActive": false,
"createdBy": "string",
"createdAt": "2026-01-15T09:30:00Z"
}