Patch Integration Trigger
curl --request PATCH \
--url https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"enabled": true,
"metadata": {},
"provider_subscription_ref": "<string>",
"trigger_type": "telegram.message.inbound"
}
'import requests
url = "https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}"
payload = {
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"enabled": True,
"metadata": {},
"provider_subscription_ref": "<string>",
"trigger_type": "telegram.message.inbound"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
agent_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
enabled: true,
metadata: {},
provider_subscription_ref: '<string>',
trigger_type: 'telegram.message.inbound'
})
};
fetch('https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'agent_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'enabled' => true,
'metadata' => [
],
'provider_subscription_ref' => '<string>',
'trigger_type' => 'telegram.message.inbound'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}"
payload := strings.NewReader("{\n \"agent_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"enabled\": true,\n \"metadata\": {},\n \"provider_subscription_ref\": \"<string>\",\n \"trigger_type\": \"telegram.message.inbound\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"agent_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"enabled\": true,\n \"metadata\": {},\n \"provider_subscription_ref\": \"<string>\",\n \"trigger_type\": \"telegram.message.inbound\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"agent_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"enabled\": true,\n \"metadata\": {},\n \"provider_subscription_ref\": \"<string>\",\n \"trigger_type\": \"telegram.message.inbound\"\n}"
response = http.request(request)
puts response.read_body{
"created_at": "2023-11-07T05:31:56Z",
"enabled": true,
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"integration_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"metadata": {},
"reply_mode": "public_reply",
"status": "active",
"trigger_type": "telegram.message.inbound",
"updated_at": "2023-11-07T05:31:56Z",
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider_subscription_ref": "<string>"
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}integrations
Patch Integration Trigger
Update a trigger: reassign the agent, change reply mode, enable or disable it. Omitted fields are left unchanged. The same checks as creation run when enabling.
PATCH
/
v1
/
integrations
/
{integration_id}
/
triggers
/
{trigger_id}
Patch Integration Trigger
curl --request PATCH \
--url https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"enabled": true,
"metadata": {},
"provider_subscription_ref": "<string>",
"trigger_type": "telegram.message.inbound"
}
'import requests
url = "https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}"
payload = {
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"enabled": True,
"metadata": {},
"provider_subscription_ref": "<string>",
"trigger_type": "telegram.message.inbound"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
agent_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
enabled: true,
metadata: {},
provider_subscription_ref: '<string>',
trigger_type: 'telegram.message.inbound'
})
};
fetch('https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'agent_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'enabled' => true,
'metadata' => [
],
'provider_subscription_ref' => '<string>',
'trigger_type' => 'telegram.message.inbound'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}"
payload := strings.NewReader("{\n \"agent_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"enabled\": true,\n \"metadata\": {},\n \"provider_subscription_ref\": \"<string>\",\n \"trigger_type\": \"telegram.message.inbound\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"agent_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"enabled\": true,\n \"metadata\": {},\n \"provider_subscription_ref\": \"<string>\",\n \"trigger_type\": \"telegram.message.inbound\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.in.talqing.com/v1/integrations/{integration_id}/triggers/{trigger_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"agent_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"enabled\": true,\n \"metadata\": {},\n \"provider_subscription_ref\": \"<string>\",\n \"trigger_type\": \"telegram.message.inbound\"\n}"
response = http.request(request)
puts response.read_body{
"created_at": "2023-11-07T05:31:56Z",
"enabled": true,
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"integration_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"metadata": {},
"reply_mode": "public_reply",
"status": "active",
"trigger_type": "telegram.message.inbound",
"updated_at": "2023-11-07T05:31:56Z",
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"provider_subscription_ref": "<string>"
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}{
"detail": {
"errors": [
"<string>"
],
"message": "<string>"
}
}Authorizations
BearerAuthSessionCookie
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Available options:
public_reply, internal_note, none Available options:
active, disabled, needs_setup, error Allowed value:
"telegram.message.inbound"Response
Successful Response
Public API representation of an integration trigger (HTTP + CoPilot).
Available options:
public_reply, internal_note, none Available options:
active, disabled, needs_setup, error Allowed value:
"telegram.message.inbound"