/
/Dalil OAuth Resource API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 14h 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

Clean up integration app customer data

This endpoint cleans up all data related to an integration app customer based on the provided payload.

post/cleanup-integration-app-customer

Request body

user_idstring

Example request

{
  "user_id": "user-123"
}

Response

Customer data cleaned up successfully

messagestring
idstring

Example response

{
  "message": "Int App customer cleaned up successfully!",
  "id": "user-123"
}

Changes