GoHighLevel Conversations API

Create Conversation

POST/conversations/

POST /conversations/ Creates a new conversation with the data provided It takes 2 body fields, requires the conversations.write scope and authenticates with a sub-account (location) token.

Request and authentication

Method
POST
Full URL
https://services.leadconnectorhq.com/conversations/
Scopes
conversations.write
Token type
Sub-account (location) token
Accepted auth
OAuth Access Token, Private Integration Token
API version header
Version: 2021-07-28
Schema verified
22 June 2026

Request body

JSON body fields. Nested objects are shown indented under their parent.

NameTypeDescription
locationIdrequiredstring

Location ID as string

Example: tDtDnQdgm2LXpyiqYvZ6

contactIdrequiredstring

Contact ID as string

Example: tDtDnQdgm2LXpyiqYvZ6

Response fields

Top-level fields returned on a successful call.

NameTypeDescription
successrequiredboolean

Indicates whether the API request was successful.

Example: true

conversationrequiredunknown

Conversation data of the provided conversation ID.

Example request

Copy-paste ready. Swap YOUR_TOKEN for your access token or Private Integration Token.

curl -X POST 'https://services.leadconnectorhq.com/conversations/' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Version: 2021-07-28' \
  -H 'Content-Type: application/json' \
  -d '{
    "locationId": "tDtDnQdgm2LXpyiqYvZ6",
    "contactId": "tDtDnQdgm2LXpyiqYvZ6"
  }'

Skip the schema lookup

Hylo gives your AI agent this schema — and the other 52 documented here — without you looking anything up. Ask in plain English; it picks the endpoint, fills the body, and can run the call against your own sub-account.

More conversations endpoints