Rest API Flashcards
1
Q
- What operations are supported by Rest API from an integration perspective?
A
- Publish events to notify your Salesforce org
- Query data in your org
- Create, update, and delete data
- Obtain metadata about your org
- Run utilities to perform administrative tasks
2
Q
What is the REST API Transaction/Commit behaviour?
A
By default, each record is treated as a separate transaction and committed separately. Failure of one record change doesn’t cause a rollback of other record changes.
This behaviour can be altered to an “all or nothing” behaviour. Use the REST API composite resources to make a series of updates in one API call.
3
Q
What is the recommended data set size for Rest API?
A
For bulk data operations (more than 500,000 records), use the REST-based Bulk API.