Get Antworten Abgleich
curl --request GET \
--url https://{host}/v1/process/mail/antworten-abgleich \
--header 'X-API-Key: <api-key>'import requests
url = "https://{host}/v1/process/mail/antworten-abgleich"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{host}/v1/process/mail/antworten-abgleich', 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://{host}/v1/process/mail/antworten-abgleich",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{host}/v1/process/mail/antworten-abgleich"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<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://{host}/v1/process/mail/antworten-abgleich")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/v1/process/mail/antworten-abgleich")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"lookback_days": 123,
"antworten": [
{
"folder": "<string>",
"date": "<string>",
"sender": "<string>",
"subject": "<string>",
"zitiert": [
{
"referenz": "<string>",
"gefunden": true,
"richtung": "",
"edi_type": "",
"date": "",
"bezug": "",
"bezug_typ": "",
"verdict": ""
}
],
"bewertung": "<string>",
"mp_id": "",
"name": "",
"offen": [
"<string>"
]
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}API Reference
Get Antworten Abgleich
Replies to a Quittungs-Nachfass or Korrektur mail, with every acknowledgment reference they cite checked against our inbox: found or not, which of our messages it answers, and which of the partner’s streams is still open. Read-only triage for the morning report.
GET
/
v1
/
process
/
mail
/
antworten-abgleich
Get Antworten Abgleich
curl --request GET \
--url https://{host}/v1/process/mail/antworten-abgleich \
--header 'X-API-Key: <api-key>'import requests
url = "https://{host}/v1/process/mail/antworten-abgleich"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{host}/v1/process/mail/antworten-abgleich', 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://{host}/v1/process/mail/antworten-abgleich",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{host}/v1/process/mail/antworten-abgleich"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<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://{host}/v1/process/mail/antworten-abgleich")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/v1/process/mail/antworten-abgleich")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"lookback_days": 123,
"antworten": [
{
"folder": "<string>",
"date": "<string>",
"sender": "<string>",
"subject": "<string>",
"zitiert": [
{
"referenz": "<string>",
"gefunden": true,
"richtung": "",
"edi_type": "",
"date": "",
"bezug": "",
"bezug_typ": "",
"verdict": ""
}
],
"bewertung": "<string>",
"mp_id": "",
"name": "",
"offen": [
"<string>"
]
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
APIKeyHeaderHTTPBearer
Query Parameters
Required range:
1 <= x <= 90