---
title: "Get details of a conversation account"
method: GET
path: "/conversation_accounts/{id}"
tags: ["Conversation"]
---

# Get details of a conversation account

`GET /conversation_accounts/{id}`

Fetches details of the conversation account specified by ID.

## Path parameters

- `id` string, required

## Response `200`

- ConversationManagerAccount
  - `id` string, uuid — The unique identifier of the conversation account.
  - `customer_id` string, uuid — The unique identifier of the customer. Returned from the `GET /customers` response.
  - `type` 'line' | 'sms' | 'whatsapp' — Type of the account.
  - `name` string — Name of the account.
  - `detail` string — Detailed information about the account.
  - `secret` string — Webhook secret for signature verification. Write-only.
  - `token` string — API token for the messaging platform. Write-only.
  - `provider_data` ConversationManagerAccountProviderData — Platform-specific provider configuration. Write-only — never returned in GET responses or webhook payloads. Currently used for WhatsApp accounts only.
    - `phone_number_id` string — The Meta phone number ID associated with your WhatsApp Business phone number. Found in Meta Business Manager under WhatsApp → Phone numbers.
    - `app_secret` string — The Meta app secret for your WhatsApp Business App. Used to validate the X-Hub-Signature-256 header on inbound webhook requests from Meta.
  - `message_flow_id` string, uuid — The flow ID to execute when a message is received on this account. Returned from the `GET /flows` response.
  - `tm_create` string, date-time — Timestamp when the account was created.
  - `tm_update` string, date-time — Timestamp when the account was last updated.
  - `tm_delete` string, date-time — Timestamp when the account was deleted.

## Other responses

- `400` — Invalid request (INVALID_ARGUMENT).
- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `404` — Resource not found (NOT_FOUND).
- `500` — Internal error (INTERNAL).

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/versions/79e779080bcc/schema)
