Table of Contents |
---|
"CRUD" Request Types
Read
Read object data from the database. This API will filter the objects based on the field names and values in the data portion of the request. There is no way to limit the fields returned by this API, so full object data will always be returned.
Section | ||
---|---|---|
Panel | ||
| ||
Anchor | read | read |
Panel | ||
|
Code Block | ||
---|---|---|
| ||
var request = {
"type" : "read",
"object" : "Account",
"data" : { "Name" : "John Doe Industries" }
};
bridge.sendRequest(request, function (responseData) {
alert('Javascript got its read response: ' + responseData);
}); |
title | Create |
---|
Create a Salesforce Object. This API will create only one object per request using the field names and values provided in the data portion of the request. This is equivalent to saving a new record from the Pulsar native user interface. Optionally, specifying the argument skipLayoutRequiredFieldCheck as TRUE will avoid checking for fields marked required on the Salesforce layout for the object. The default behavior for is to display Pulsar's record create screen if a field validation error or record creation error occurs. To disable this behavior, specify the allowEditOnFailure argument with a value of FALSE.
warningvar request = {
"type" : "read",
"object" : "Account",
"data" : { "Name" : "John Doe Industries" }
};
bridge.sendRequest(request, function (responseData) {
alert('Javascript got its read response: ' + responseData);
});
Create
Create a Salesforce Object. This API will create only one object per request using the field names and values provided in the data portion of the request. This is equivalent to saving a new record from the Pulsar native user interface. Optionally, specifying the argument skipLayoutRequitedFieldCheck as TRUE will avoid checking for fields marked required on the Salesforce layout for the object. The default behavior for is to display Pulsar’s record create screen if a field validation error or record creation error occurs. To disable this behavior, specify the allowEditOnFailure argument with a value of FALSE.
Note |
---|
Multiple create, update, or delete requestsdelete requests MUST NOTNOT run concurrently, and should instead be run sequentially. Furthermore, this API will have the following effects (if these features are enabled):
|
Code Block | language | js||||
---|---|---|---|---|---|
var request = {
"type" : "create",
"object" : "Account",
"data" : { "Name" : "John Doe Industries", "Phone" : "867-5309" },
"args" : {
"allowEditOnFailure" : "FALSE", // OPTIONAL : DEFAULT IS "TRUE"-- Allow editing the record using the Pulsar object edit screen to fix errors on a create failure
"skipLayoutRequiredFieldCheck" : "FALSE" // <-- OPTIONAL : if specified as "TRUE", will avoid checking for missing layout required fields
}};
bridge.sendRequest(request, function (responseData) {
alert('Javascript got its create response: ' + responseData);
}); Anchor | | update | update | ||
Panel | title |
Update (single record only)
Update an existing Salesforce Object. This API will update only one object per request using the field names and values provided in the data portion of the request. The Id field is
...
required to identify the record to update. This is equivalent to saving a record from the Pulsar native user interface.
...
Optionally, specifying the argument skipLayoutRequiredFieldCheck as
...
TRUE will avoid checking for fields marked required on the Salesforce layout for the object.
...
Note |
---|
Multiple create, update, or delete requestsdelete requests MUST NOTNOT run concurrently, and should instead be run sequentially. Furthermore, this API will have the following effects (if these features are enabled):
|
Code Block | ||||||
---|---|---|---|---|---|---|
js | ||||||
Anchor | delete | delete | ||||
Panel | title | Delete
Delete (single record only)
Delete an existing Salesforce Object. This API will delete only one object per request using the Id field to identify the record. This is equivalent to deleting a record from the Pulsar native user interface.
Note |
---|
Multiple create, update, or delete requestsdelete requests MUST NOTNOT run concurrently, and should instead be run sequentially. Furthermore, this API will have the following effects (if these features are enabled):
|
Code Block | language | js|
---|---|---|
var request = { "type" : "delete", "object" : "Account", "data" : { "Id" : "001234567891234" } // only Id is required }; bridge.sendRequest(request, function (responseData) { alert('Javascript got its delete response: ' + responseData); }); Panel | | title |
Batch Delete
Deletes an existing set of Salesforce objects. This API will delete multiple objects per request using the objectIdList paramter to identify the records. This is equivalent to deleting the records sequentially from the Pulsar native user interface.
Warning |
---|
Note |
Multiple create, update, or delete requests . FurthermoreMUST NOT run concurrently, and should instead be run sequentially. Furthermore, this API will have the following effects (if these features are enabled):
|
Info |
---|
The deletebatch API allows efficiently deleting multiple objects, provided as an array of object Ids. See the example syntax below. |
Code Block | ||
---|---|---|
|
Sample response:
Code Block | language | json|
---|---|---|
{
"type": "deletebatchResponse",
"object": "Account",
"fieldName": null,
"data": {
"summary": {
"success": "FALSE"
},
"results": {
"001234567891234": {
"objectId": "001234567891234",
"success": "TRUE",
"error": ""
},
"001234567891235": {
"objectId": "001234567891235",
"success": "FALSE",
"error": "delete failed - Error occurred during object delete"
},
"001234567891236": {
"objectId": "001234567891236",
"success": "TRUE",
"error": ""
}
}
}
}
| ||
Section | ||
Anchor | select | select |
Panel | ||
| ||
Panel | title |
Local SQL Queries
Select (read-only local query)
Note | icon | false
---|
Info |
The select request allows advanced users to create an arbitrary select query using Pulsar's built in database engine. |
Code Block | ||||
---|---|---|---|---|
var request = { "type" : "select", "object" : "Account", "data" : { "query" : "Select Id from Account Where Name like '%hello%'" } }; bridge.sendRequest(request, function (responseData) { alert('Javascript got its select response: ' + responseData);
}); Anchor | | update | update | paneltitle |
Update (local update query)
Note | title | Note
---|---|
Info | |
We encourage you to use the standard CRUD Warning | |
Note | |
---|---|
Caveat Programmer!
Code Block |
|
Info |
---|
When Pulsar is in online mode, the |
Code Block |
---|
var request = {
"type" : "updateQuery",
"object" : "Account",
"data" : { "query" : "UPDATE Account SET ActiveCustomer__c = 'TRUE' WHERE OpportunityCount__c > 0;" }
};
bridge.sendRequest(request, function (responseData) {
alert('Javascript got its update query response: ' + responseData);
}); |
Sample Response (with a reported Salesforce error):
Code Block |
---|
Response: { "type": "updateQueryResponse", "object": "Account", "data": " datasuccess",: {"query errors" : "UPDATE[Account SET ActiveCustomer__c = 'TRUE' WHERE OpportunityCount__c > 0;" }
};
bridge.sendRequest(request, function (responseData) {
alert('Javascript got its update query response: ' + responseData);
}); {
"errorCode": "ENTITY_IS_LOCKED",
"message": "This record is locked. If you need to edit it, contact your admin."
}
]
} |