Mark one or more matched records as not-a-duplicate of the given client. Run in API Explorer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.plannrcrm.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"PlannrCRM MCP server": {
  "url": "https://apidocs.plannrcrm.com/mcp"
}
Close
POST /api/v1/client/{client_uuid}/potential-duplicates/dismiss

Path parameters

  • client_uuid string Required
application/json

Body

  • matched_account_uuids array Required

    UUIDs of the matched client records the user is marking as not-a-duplicate of this client.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
POST /api/v1/client/{client_uuid}/potential-duplicates/dismiss
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/client/6ff8f7f6-1eb3-3525-be4a-3932c805afed/potential-duplicates/dismiss' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"matched_account_uuids":["9b1f2a8b-7b1d-4d8a-bf2e-12d0a8f0c0aa"]}'
Request examples
{
  "matched_account_uuids": [
    "9b1f2a8b-7b1d-4d8a-bf2e-12d0a8f0c0aa"
  ]
}
Response examples (401)
{
  "message": "Unauthenticated."
}