Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
Authorization: Key=YOUR_KEY
Content-Type: application/json

Request

When making a request, you must post the following JSON object.

Info

The API consistently executes operations in the following sequential order:

  1. insert_leads

  2. update_leads

  3. delete_leads

When making a request, you must post the following JSON object.

Code Block
languagejson
{
  "insert_leads": true,
  "update_leads": true,
  "delete_leads": true,
  "lead_ids": [
    12345,
    67890
  ]
}

...