GET
/
messages
/
threads
/
{accountId}
/
get-details
/
{threadId}
curl --request GET \
  --url https://api.a1base.com/v1/messages/threads/{accountId}/get-details/{threadId} \
  --header 'X-API-Key: <api-key>' \
  --header 'X-API-Secret: <api-key>'
{
  "status": "success",
  "data": {
    "account_id": "<string>",
    "chat_id": "<string>",
    "chat_name": "<string>",
    "participants": [
      "<string>"
    ]
  }
}

Authorizations

X-API-Key
string
header
required
X-API-Secret
string
header
required

Headers

X-API-Key
string
required
X-API-Secret
string
required

Path Parameters

accountId
string
required
threadId
string
required

Response

200
application/json
Thread details retrieved successfully
status
enum<string>
Available options:
success
data
object