Support & Docs
Powered by HelpSpot

Private requests appearing in portal


We're using the API to create private requests for clients to initiate back-office processes that we don't want them to see. The API creates the request and populates the customer ID and email address - this is needed for the support teams.

We're using black box authentication on the portal - when a client logs in they're seeing a complete list of requests, including the internal requests we've created. The 'request history' page is displaying these private requests and the full contents of the (private) note is displayed.

Any work-arounds?
July 14 2010, 10:12 PM
James |
Hi James,

It sounds like something if funny there, maybe the requests are actually being marked as public in your API call? Can you post your api code or email it in?
12 hours, 56 mins since original post
Ian Landsman |
It's vb.net, here's an extract of the parameters:

With params
.Add("tNote", Message & vbCrLf & vbCrLf & "** SYSTEM GENERATED MESSAGE **")
.Add("xCategory", Category)
.Add("xPersonAssignedTo", AssignTo)
.Add("fNoteType", 0)
.Add("sUserId", UserName)
.Add("sFirstName", FirstName)
.Add("sLastName", LastName)
.Add("sPhone", Phone)
.Add("sEmail", Email)
.Add("email_from", 0)
End With
Return SendData("private.request.create", params)
21 hours, 2 mins since original post
James |
That looks OK. I'm not aware of any bugs in that area. Is every note you add with the API available on the portal?
4 days, 10 hours since original post
Ian Landsman |
This topic is closed