---
title: "Manually queue a rule execution"
method: POST
path: "/v3/RuleExecutions"
tags: ["RuleExecutions"]
---

# Manually queue a rule execution

`POST /v3/RuleExecutions`

Resolves the given configuration, rule, and conversation, derives the memoryStoreId from the conversation's configuration. Then executes the rule on the conversation.

## Request body

- object
  - `intelligenceConfigurationId` string, required — Unique identifier for a Intelligence Configuration that generated the Operator Result. Assigned by Twilio (TTID).
  - `ruleId` string, required — Unique identifier of the rule of the Intelligence Configuration that triggered the result. Assigned by Twilio (TTID).
  - `conversationId` string, required — The `id` of the Conversation attached to the Operator Result.

## Response `202`

Rule execution queued.

## Other responses

- `400` — The request is malformed: the request body fails schema validation (a required field is missing, or a field does not match its expected pattern) or the request body is not valid JSON.
- `404` — For RuleExecutions creation: the intelligenceConfigurationId does not resolve to an existing Intelligence Configuration, the ruleId does not exist within that configuration, or the conversationId does not resolve to an existing conversation.
- `422` — The request references valid resources, but the request cannot be processed as given. For RuleExecutions creation: the configuration and conversation resolved successfully, but no memoryStoreId could be derived from the conversation's configuration, so the rule execution cannot be built.
- `429` — The Account has exceeded the allowed request rate for this endpoint. The X-RateLimit-Reset header indicates when the rate limit window resets.
- `500` — An unexpected error prevented the request from being processed. For RuleExecutions creation, this includes failures resolving the configuration, rule, or conversation that are not classified as not-found errors.

---

[API](https://skmtc.net/twilio/apis/twilio-intelligence.md) · [All operations](https://skmtc.net/twilio/apis/twilio-intelligence/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/twilio/twilio-intelligence/revisions/3a830979326d/schema)
