---
title: "Get Operation Status"
method: GET
path: "/v2/ControlPlane/Operations/{id}"
tags: ["ConversationsV2Operation"]
---

# Get Operation Status

`GET /v2/ControlPlane/Operations/{id}`

Retrieve the current status of a long-running operation.
Operations progress through: PENDING -> RUNNING -> COMPLETED or FAILED.

## Response `200`

Operation status

- object — Status of a long-running operation.
  - `operationId` string, required — Unique identifier for the long-running operation.
  - `status` 'PENDING' | 'COMPLETED' | 'FAILED', required — Lifecycle status of a long-running operation.
  - `createdAt` string, date-time, required — Timestamp when the operation was created.
  - `completedAt` string, date-time, nullable — Timestamp when the operation completed. Only present for completed or failed operations.
  - `statusUrl` string, uri, required — URL to poll for operation status.
  - `error` object, nullable — Error details if the operation failed. Follows RFC 9457 Problem Details.
    - `type` string, uri — A URI reference that identifies the problem type.
    - `title` string — A short, human-readable summary of the problem type.
    - `status` integer — The HTTP status code for this occurrence of the problem.
    - `detail` string — A human-readable explanation specific to this occurrence.
    - `instance` string, uri — A URI reference that identifies the specific occurrence of the problem.
  - `related` object, nullable — Named resource identifiers associated with this operation. Keys depend on the operation type: - config-create, config-update, config-delete: configurationId - conversation-delete: conversationId

## Other responses

- `400` — Bad Request
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Internal Server Error
- `503` — Service Unavailable

---

[API](https://skmtc.dev/twilio/apis/conversations-v2.md) · [All operations](https://skmtc.dev/twilio/apis/conversations-v2/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/twilio/conversations-v2/revisions/f039dce07916/schema)
