CRM
salesforce.com
Test against the Salesforce Platform REST API API
A hosted, stateful simulation shaped like the Salesforce Platform REST API API. Writes persist, data moves on a schedule and every change can fire a signed webhook. Unofficial: not affiliated with salesforce.com.
- Operations
- 28
example request
curl https://api.slurry.io/s/your-salesforce/services/data/v62.0/query \
-H "Authorization: Bearer slurry_sim_live_..."Your simulation gets its own hostname, key and IP allow-list. Spec snapshot: version 62.0.
What gets simulated
Collections, relationships and state machines are worked out from the spec when you start the simulation.
- State. Creates, updates and deletes persist and show up in later reads.
- Behaviour. Records move through their states on a schedule you control, and you can fast-forward up to 30 days.
- Webhooks. Every change emits a signed, retried event.
- Failure. Per-endpoint errors, latency and chaos rules, on demand.
Operations
First 12 of 28.
- GET/services/data/v62.0/query
- GET/services/data/v62.0/sobjects
- GET/services/data/v62.0/limits
- GET/services/data/v62.0/sobjects/Account
- POST/services/data/v62.0/sobjects/Account
- GET/services/data/v62.0/sobjects/Account/{id}
- PATCH/services/data/v62.0/sobjects/Account/{id}
- DELETE/services/data/v62.0/sobjects/Account/{id}
- GET/services/data/v62.0/sobjects/Contact
- POST/services/data/v62.0/sobjects/Contact
- GET/services/data/v62.0/sobjects/Contact/{id}
- PATCH/services/data/v62.0/sobjects/Contact/{id}