Versions Compared

Key

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

Update an existing lead in Noojee Contact.

...

As the UpdateLeadFast end point allows you to set a disposition, a lead may in fact never by dialed as you can close a lead out using the appropriate disposition.

The endpoint InsertLeadFast replaces UpdateLeadFast replaces the original InsertLead UpdateLead method. The new endpoint takes the same arguments but has enhanced error codes and as the name implies is faster than the original InsertLead UpdateLead endpoint.

Performance considerations

...

If you exceed the above rates, the system will queue additional requests. This may result in your call to the endpoint timing out (currently timeout is 1 minute). If your call to the InsertLeadFast endpoint InsertLead endpoint times out, then the lead will not be inserted updated and you will need to retry the insertionupdate.

Queue insertions

As the end point is rate limited we strongly recommend that you queue the updates within your system and include retry logic if for when the update fails. This will deal with the above rate limiting logic as well as provide guaranteed delivery even if the Noojee PBX goes down for maintenance.

...

ParameterDescriptionRequired
njDisposition

Disposition code. Any Dispositon Actions associated with the new Disposition (via the value in njDispositon) WILL be triggered .

If you don't want to update the existing disposition you may pass the value '<No Change>' instead of a disposition value. Note: THIS WILL FAIL if the lead has not been dialed (and therefore does not have a disposition).

Yes

In this case you will get the error: DISPOSTION_ISNT_SET_AND_NOCHANGE_SPECIFIED. You must call updateLeadFast again specifying an actual disposition.

 IFYes
njCallBackDate

The date on which the lead is to be called. If not specified the lead is treated as a 'new' lead and will be called on a first come first served basis.

Format is "yyyy/MM/dd HH:mm"

No
njPriorityA priority between 0 and 100. The lower the number the higher the priority. Higher priority leads will be called before lower priority calls. Default priority is 10.No
Phone Number

Whilst not a system field, you MUST specify at least on of the phone fields. However if you don't want to change the existing field value you can simply pass the value '<No Change>' as the value for any phone field. Note: the angle brackets '<>' are required.

Yes

...