Remove previously created deny rules so those emails or phone numbers can appear in enrichment results again.
Overview
Use this endpoint to remove deny rules that you created earlier. Only rules matching the exact (type, value) tuples in the body are removed. Values with no matching rule are silently ignored, so the call is safe to replay.
Before you start
Make sure you have:
an Openmart account
an API key
a tool to send API requests, such as Postman or curl
Authentication. We recommend sending your API key as Authorization: Bearer <your_api_key>. If your current integration already uses X-API-Key: <your_api_key>, it will continue to work.
Deny rules belong to the team connected to your API key, so they only affect that team's enrichment requests.
1
Example: Unblock an email address
Endpoint
DELETE https://api.openmart.ai/api/v2/deny-rules
Parameters
Parameter
type
Type
string (enum)
Required
Yes
Example
"email"
Description
Identifier kind. Must be exactly "email" or "phone"; any other value returns 400 detail:"Type must be one of [email phone]".
Parameter
values
Type
array[string]
Required
Yes
Example
["blocked@example.com"]
Description
Literal identifiers to add, remove, or check. Emails are matched case-insensitively at lookup time. Phones should be E.164 formatted.
Parameter
Type
Required
Example
Description
type
string (enum)
Yes
"email"
Identifier kind. Must be exactly "email" or "phone"; any other value returns 400 detail:"Type must be one of [email phone]".
values
array[string]
Yes
["blocked@example.com"]
Literal identifiers to add, remove, or check. Emails are matched case-insensitively at lookup time. Phones should be E.164 formatted.