Skip to main content
GET
/
v1
/
list-conversation-profiles
/
{company_id}
List conversation profiles for a company
curl --request GET \
  --url https://api.salescaptain.com/v1/list-conversation-profiles/{company_id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Conversation profiles fetched successfully!",
  "account": [
    {
      "conversation_profile_id": "cp-1111-2222-3333-444455556666",
      "name": "Main Line",
      "number": "+14155551234",
      "email": "[email protected]",
      "color": "#4A90D9"
    },
    {
      "conversation_profile_id": "cp-7777-8888-9999-aaaabbbbcccc",
      "name": "Sales Line",
      "number": "+14155555678",
      "email": "[email protected]",
      "color": "#50C878"
    },
    {
      "conversation_profile_id": "cp-dddd-eeee-ffff-000011112222",
      "name": "Email Channel",
      "number": null,
      "email": "[email protected]",
      "color": "#FF6B6B"
    }
  ]
}

Authorizations

Authorization
string
header
required

Authentication token required for accessing protected endpoints. The token should be obtained from the main SalesCaptain authentication service.

Path Parameters

company_id
string<uuid>
required

Unique identifier for the company

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

Response

Conversation profiles fetched successfully

message
string
Example:

"Conversation profiles fetched successfully!"

account
object[]