/
/Dalil OAuth Resource API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 15h ago · Updated 3w ago
Accounts3
Deals3
  • postCreate a new lead
  • getSearch leads
  • getSearch leads by AND criteria
  • putUpdate a lead's phone book information
  • getGet all leads with phone book data
  • postCreate a new contact
  • getSearch contacts
  • getSearch contacts by AND criteria
  • putUpdate a contact's phone book information
  • getGet all contacts with phone book data
  • postCreate a new account
  • postCreate a new deal
  • postProcess email updates and deletions
  • postProcess email updates and deletions
  • postProcess calendar event updates and deletions
  • postProcess initial calendar sync
  • postClean up integration app customer data
  • getGet calendar events
  • postCreate a calendar event
  • deleteDelete a calendar event
  • patchUpdate a calendar event
  • getGet calendars
  • postGenerate access and refresh tokens
  • postRefresh access token
  • getGet entity groups
  • getGet custom fields
  • getGet tags
  • getGet labels
  • getGet stages
  • getGet priorities
  • getAuthorize user
  • postGenerate access and refresh tokens
  • postRefresh access token
  • getGet user info
  • getGet public keys
  • postDelete a user
  • postInvite a user
  • postCreate a new user
  • postUpdate user state

Process email updates and deletions

This endpoint processes email updates and deletions based on the provided payload.

post/email-bulk-process-webhook

Request body

Example request

{
  "data": {
    "connection_ids": [
      "conn-123"
    ],
    "filterEmails": [
      "example@example.com"
    ]
  }
}

Response

Email processed successfully

messagestring

Example response

{
  "message": "Email processed successfully"
}

Changes