Update Discord Integration
curl --request PUT \
--url https://app.papelship.com/api/qpapel/v1/discord-integrations/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"guild_name": "Updated Guild Name",
"is_active": true,
"log_channel_id": "9876543210987654",
"log_dm_enabled": true
}
'const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
guild_name: 'Updated Guild Name',
is_active: true,
log_channel_id: '9876543210987654',
log_dm_enabled: true
})
};
fetch('https://app.papelship.com/api/qpapel/v1/discord-integrations/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.papelship.com/api/qpapel/v1/discord-integrations/{id}"
payload = {
"guild_name": "Updated Guild Name",
"is_active": True,
"log_channel_id": "9876543210987654",
"log_dm_enabled": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.papelship.com/api/qpapel/v1/discord-integrations/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'guild_name' => 'Updated Guild Name',
'is_active' => true,
'log_channel_id' => '9876543210987654',
'log_dm_enabled' => true
]),
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://app.papelship.com/api/qpapel/v1/discord-integrations/{id}"
payload := strings.NewReader("{\n \"guild_name\": \"Updated Guild Name\",\n \"is_active\": true,\n \"log_channel_id\": \"9876543210987654\",\n \"log_dm_enabled\": true\n}")
req, _ := http.NewRequest("PUT", 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))
}{
"success": true,
"message": "Operation completed successfully"
}{
"success": false,
"error": "Missing required field or invalid value"
}{
"success": false,
"error": "Unauthorized access. Valid API key required."
}Discord Integrations
Update Discord Integration
Modify channel routing, active state, or DM delivery settings.
PUT
/
discord-integrations
/
{id}
Update Discord Integration
curl --request PUT \
--url https://app.papelship.com/api/qpapel/v1/discord-integrations/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"guild_name": "Updated Guild Name",
"is_active": true,
"log_channel_id": "9876543210987654",
"log_dm_enabled": true
}
'const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
guild_name: 'Updated Guild Name',
is_active: true,
log_channel_id: '9876543210987654',
log_dm_enabled: true
})
};
fetch('https://app.papelship.com/api/qpapel/v1/discord-integrations/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.papelship.com/api/qpapel/v1/discord-integrations/{id}"
payload = {
"guild_name": "Updated Guild Name",
"is_active": True,
"log_channel_id": "9876543210987654",
"log_dm_enabled": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.papelship.com/api/qpapel/v1/discord-integrations/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'guild_name' => 'Updated Guild Name',
'is_active' => true,
'log_channel_id' => '9876543210987654',
'log_dm_enabled' => true
]),
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://app.papelship.com/api/qpapel/v1/discord-integrations/{id}"
payload := strings.NewReader("{\n \"guild_name\": \"Updated Guild Name\",\n \"is_active\": true,\n \"log_channel_id\": \"9876543210987654\",\n \"log_dm_enabled\": true\n}")
req, _ := http.NewRequest("PUT", 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))
}{
"success": true,
"message": "Operation completed successfully"
}{
"success": false,
"error": "Missing required field or invalid value"
}{
"success": false,
"error": "Unauthorized access. Valid API key required."
}Authorizations
BearerAuthApiKeyHeaderApiKeyHeaderLegacy
Standard HTTP Bearer token authentication header (e.g. Authorization: Bearer pk_live_...).
Path Parameters
Unique database ID of the integration.
Body
application/json