Search found 3 matches

by rubinhozzz
Thu Mar 02, 2017 11:07 pm
Forum: Developer Chat
Topic: 3 records when calling and 2 record when receiving
Replies: 1
Views: 7527

3 records when calling and 2 record when receiving

Hello

Looking at my call history records. When I call somebody, I get 3 records. 1 In and 2 OUT. Shouldn't it be just ONE record with direction "IN"??

The same for when I'm receiving a call, I get 1 IN and 1 OUT.

How does it work?

Thanks in advance.
by rubinhozzz
Tue Jul 19, 2016 9:39 pm
Forum: Developer Chat
Topic: Add more parameters to WHERE expression
Replies: 3
Views: 8827

Re: Add more parameters to WHERE expression

Thanks for the reply Aaron. However, using that code... url = SS_PROVISIONING_URL + 'cdr/get?where=FromUser="%s" and Created > "2016-01-27T22:00:00" and Created < "2016-01-27T23:00:00" ' % (q.strip(),) gives me the following error... {u'Result': None, u'Success': False, u'Error': u"Operator 'and' in...
by rubinhozzz
Sun Jul 17, 2016 8:23 pm
Forum: Developer Chat
Topic: Add more parameters to WHERE expression
Replies: 3
Views: 8827

Add more parameters to WHERE expression

I'm trying to get the calls for a specific number. However I want to extend that but getting the calls between an interval of dates. How can I accomplish that? (I'm using Python) The code below just retrieves the first 10 records for that number. I would like to add more parameters to the WHERE expr...