Skip to main content
POST
/
simulate
/
entities
/
{entity_id}
/
attributes
curl https://dev.methodfi.com/v2024-04-04/simulate/entities/{entity_id}/attributes \\
  -X POST \\
  -H "Method-Version: 2024-04-04" \\
  -H "Authorization: Bearer sk_test_xxx" \\
  -H "Content-Type: application/json" \\
  -d '{
    "behaviors": ["new_soft_inquiry"]
    }'
{
  "success": true,
  "data": null,
  "message": null
}
Use this simulation to queue attribute behaviors that run the next time you execute the Attributes product for an entity.
Simulation endpoints are only available in the development environment. Teams with live treasury access cannot use them.

Path Parameters

entity_id
string
required
ID of the entity whose attributes you want to simulate.

Body

behaviors
enum[]
required
List of behaviors to queue. Each behavior is consumed the next time the Attributes product runs for this entity.
new_soft_inquiry
Increments the soft inquiry value and prepends a simulated inquiry to the history.
curl https://dev.methodfi.com/v2024-04-04/simulate/entities/{entity_id}/attributes \\
  -X POST \\
  -H "Method-Version: 2024-04-04" \\
  -H "Authorization: Bearer sk_test_xxx" \\
  -H "Content-Type: application/json" \\
  -d '{
    "behaviors": ["new_soft_inquiry"]
    }'
{
  "success": true,
  "data": null,
  "message": null
}
I