Questions tagged [beatbox]

Beatbox is a minimal dependency python library for accessing the salesforce.com web services API.

Beatbox is a minimal dependency python library for accessing the salesforce.com web services API.

Its primary dependency is on xmltramp, a xml parser library that exposes access to the xml document in an easy to use manner.

29 questions
0
votes
1 answer

How do I upload my pandas dataframe to already existing report in salesforce

I'm new to working with salesforce, but I have a pandas dataframe with me and I also have an existing salesforce report, I'd like to export my pandas dataframe to my salesforce report. I looked into many examples and the documentation itself but I…
0
votes
3 answers

ModuleNotFoundError: No module named '_beatbox'

I am trying to use python to connect with SF. Saw some articles that show how to use it with beatbox library and I did install it. However when trying to run simple code I'm getting error below. Traceback (most recent call last): File…
Liron C
  • 171
  • 1
  • 12
0
votes
1 answer

Why are there ghost/random accounts in salesforce when calling this beatbox API?

I am using the beatbox API to print out all my accounts on my dummy Salesforce account. The only account I've created on my dummy account is "Sally", I have no idea where the rest came from. These accounts circled in red don't even show on my dummy…
0
votes
2 answers

How to fetch Salesforce Attachment file content with django-salesforce?

I'm developing a Django 1.11 app serving as a UI for some Salesforce Objects using django-salesforce for the communication with Salesforce. I have to give users the option to download files from Salesforce Attachment objects related to their…
0
votes
1 answer

Beatbox: Select all query

In place of giving column names in service.query I want to retrieve all the columns of a custom object or may be Accounts. Any idea on how to do it with beatbox API?
Gagan
  • 1,775
  • 5
  • 31
  • 59
0
votes
1 answer

beatbox bulk delete: Getting MALFORMED_ID

Just like upsert, I want to bulk delete records of a particular custom index using beatbox. Is there any way? I am getting MALFORMED_ID when i am doing it.
Gagan
  • 1,775
  • 5
  • 31
  • 59
0
votes
1 answer

Python3 + beatbox : Not able to querymore

I have logged into my SFDC org using instructions provided here http://tomhayden3.com/2013/08/04/salesforce-python/. However, I am not able to implement the queryMore part of it. It just does nothing. When I print(query_locator) it prints out an ID…
r0xette
  • 898
  • 3
  • 11
  • 24
0
votes
2 answers

Beatbox: How do I add OR function to WHERE clause when pulling data from SFDC?

Currently I am querying data from the Account object for only accounts with Opportunities. However, I want to add an OR function so that it will query data for accounts that have Contacts as well. What is the syntax for adding an OR to that? As in…
Eric
  • 673
  • 1
  • 6
  • 12
0
votes
1 answer

REQUIRED_FIELD_MISSING when trying to access the Salesforce API with beatbox

I am using beatbox to access the SOAP API of Salesforce. More specifically, I am trying to convert a Lead using convertLead like so # Assuming soap_client is a PythonClient already logged in and # lead is a Lead object. response =…
Buddyshot
  • 1,614
  • 1
  • 17
  • 44
0
votes
0 answers

Uploading attachments to Salesforce with Beatbox - coming up blank

Im trying to upload a folder full of emails to Salesforce, one email per case. The script does everything fine, but the emails it uploads are totally blank, and are 0 bytes. Im pretty sure its something to do with the base64 encoding required to…
Obol
  • 189
  • 2
  • 8
0
votes
0 answers

Python Salesforce Beatbox cannot import _tPartnerNS

I am trying to use Python and beatbox to login to Salesforce but am running to some issues: MY Code: import beatbox from beatbox import _tPartnerNS print "Enter your login: " mylogin = raw_input() print "password: " password = raw_input() sf =…
user2242044
  • 8,803
  • 25
  • 97
  • 164
0
votes
3 answers

Python, Beatbox - Return all available fields

I'm trying to run a query into Salesforce that returns the names and API names of all the fields with an associated object using beatbox. Has anyone done this before? Is it possible? Thanks
shartshooter
  • 1,761
  • 5
  • 19
  • 40
0
votes
2 answers

Get URL for Salesforce Lead (Python Beatbox SOAP API)

I'm using Beatbox to access Salesforce's SOAP API. I can query for a series of Leads— SELECT Id FROM Lead Does anyone know how I can create a URL to view each Lead on the website?
-1
votes
1 answer

"background" setting help in making the BeatBox with Java

I am trying to make a BeatBox by using Java, but my code is not running and it shows problem in following line: background.setBorder(BorderFactory.createEmptyBorder(10,10,10,10)); Please assist me in finding a solution as how to fix up the…
user3193794
  • 105
  • 2
  • 12
1
2