Get thread
curl --request GET \
--url https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID} \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}';
const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}")
.header("Authorization", "<api-key>")
.asString();using RestSharp;
var options = new RestClientOptions("https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "<api-key>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"contact": {
"company": "<string>",
"email": "<string>",
"firstName": "<string>",
"id": "<string>",
"lastName": "<string>",
"linkedinUrl": "<string>"
},
"emails": [
{
"attachments": [
{
"contentId": "<string>",
"contentType": "<string>",
"embedded": true,
"filename": "<string>",
"id": "<string>",
"inline": true,
"size": 123
}
],
"bccs": [
{
"email": "<string>",
"name": "<string>"
}
],
"ccs": [
{
"email": "<string>",
"name": "<string>"
}
],
"content": "<string>",
"date": "<string>",
"emailId": "<string>",
"fromAddress": "<string>",
"id": "<string>",
"subject": "<string>",
"toAddress": "<string>",
"tos": [
{
"email": "<string>",
"name": "<string>"
}
],
"type": "<string>"
}
],
"linkedinMessages": [
{
"accountId": 123,
"attachments": [
{
"contentType": "<string>",
"filename": "<string>",
"id": "<string>",
"size": 123,
"type": "<string>",
"url": "<string>"
}
],
"date": "<string>",
"direction": "inbound",
"firstName": "<string>",
"id": "<string>",
"lastName": "<string>",
"linkedinUrl": "<string>",
"message": "<string>",
"profilePictureUrl": "<string>",
"subject": "<string>"
}
],
"sequence": {
"id": "<string>",
"name": "<string>",
"product": {
"id": "<string>",
"internalName": "<string>",
"translations": [
{
"costOfInaction": "<string>",
"idealCustomerProfile": "<string>",
"industry": "<string>",
"language": "russian",
"name": "<string>",
"pain": "<string>",
"proofPoints": "<string>",
"solution": "<string>"
}
]
},
"status": "active"
}
}{
"data": [
{
"createdAt": "<string>",
"type": "email",
"value": "<string>"
}
],
"message": "<string>"
}{
"data": [
{
"createdAt": "<string>",
"type": "email",
"value": "<string>"
}
],
"message": "<string>"
}threads
Get thread
Get thread information for a workspace thread. Supports both mailbox (email) threads and mailbox-less (LinkedIn-only) threads created through multichannel sequence execution.
GET
/
workspaces
/
{workspaceID}
/
threads
/
{threadID}
Get thread
curl --request GET \
--url https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID} \
--header 'Authorization: <api-key>'const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}';
const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}")
.header("Authorization", "<api-key>")
.asString();using RestSharp;
var options = new RestClientOptions("https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "<api-key>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://api.salesforge.ai/public/v2/workspaces/{workspaceID}/threads/{threadID}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"contact": {
"company": "<string>",
"email": "<string>",
"firstName": "<string>",
"id": "<string>",
"lastName": "<string>",
"linkedinUrl": "<string>"
},
"emails": [
{
"attachments": [
{
"contentId": "<string>",
"contentType": "<string>",
"embedded": true,
"filename": "<string>",
"id": "<string>",
"inline": true,
"size": 123
}
],
"bccs": [
{
"email": "<string>",
"name": "<string>"
}
],
"ccs": [
{
"email": "<string>",
"name": "<string>"
}
],
"content": "<string>",
"date": "<string>",
"emailId": "<string>",
"fromAddress": "<string>",
"id": "<string>",
"subject": "<string>",
"toAddress": "<string>",
"tos": [
{
"email": "<string>",
"name": "<string>"
}
],
"type": "<string>"
}
],
"linkedinMessages": [
{
"accountId": 123,
"attachments": [
{
"contentType": "<string>",
"filename": "<string>",
"id": "<string>",
"size": 123,
"type": "<string>",
"url": "<string>"
}
],
"date": "<string>",
"direction": "inbound",
"firstName": "<string>",
"id": "<string>",
"lastName": "<string>",
"linkedinUrl": "<string>",
"message": "<string>",
"profilePictureUrl": "<string>",
"subject": "<string>"
}
],
"sequence": {
"id": "<string>",
"name": "<string>",
"product": {
"id": "<string>",
"internalName": "<string>",
"translations": [
{
"costOfInaction": "<string>",
"idealCustomerProfile": "<string>",
"industry": "<string>",
"language": "russian",
"name": "<string>",
"pain": "<string>",
"proofPoints": "<string>",
"solution": "<string>"
}
]
},
"status": "active"
}
}{
"data": [
{
"createdAt": "<string>",
"type": "email",
"value": "<string>"
}
],
"message": "<string>"
}{
"data": [
{
"createdAt": "<string>",
"type": "email",
"value": "<string>"
}
],
"message": "<string>"
}