List status updates
curl --request GET \
--url https://api.paywise.de/v1/mandates/{id}/statusupdates/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.paywise.de/v1/mandates/{id}/statusupdates/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.paywise.de/v1/mandates/{id}/statusupdates/', 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.paywise.de/v1/mandates/{id}/statusupdates/",
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: Bearer <token>"
],
]);
$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://api.paywise.de/v1/mandates/{id}/statusupdates/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.paywise.de/v1/mandates/{id}/statusupdates/")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.paywise.de/v1/mandates/{id}/statusupdates/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
"title": "Erste Zahlungsaufforderung",
"description": "<p>Wir haben Ihrem Schuldner unsere erste Zahlungsaufforderung gesendet.</p>",
"legal_stage": "dunning",
"processing_state": "open",
"created": "2023-07-15T10:23:45.678901Z",
"downloads": [
{
"id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"filename": "zahlungsaufforderung.pdf",
"mime_type": "application/pdf",
"file_size": 145632,
"download_url": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/statusupdates/095be615-a8ad-4c33-8e9c-c7612fbf6c9f/download/a1b2c3d4-e5f6-7890-1234-567890abcdef/"
},
{
"id": "f6e5d4c3-b2a1-9876-5432-1abcdef67890",
"filename": "einschreiben_nachweis.jpg",
"mime_type": "image/jpeg",
"file_size": 89421,
"download_url": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/statusupdates/095be615-a8ad-4c33-8e9c-c7612fbf6c9f/download/f6e5d4c3-b2a1-9876-5432-1abcdef67890/"
}
]
}Mandates
List status updates
Lists all status updates of a mandate.
GET
/
v1
/
mandates
/
{id}
/
statusupdates
/
List status updates
curl --request GET \
--url https://api.paywise.de/v1/mandates/{id}/statusupdates/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.paywise.de/v1/mandates/{id}/statusupdates/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.paywise.de/v1/mandates/{id}/statusupdates/', 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.paywise.de/v1/mandates/{id}/statusupdates/",
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: Bearer <token>"
],
]);
$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://api.paywise.de/v1/mandates/{id}/statusupdates/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.paywise.de/v1/mandates/{id}/statusupdates/")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.paywise.de/v1/mandates/{id}/statusupdates/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
"title": "Erste Zahlungsaufforderung",
"description": "<p>Wir haben Ihrem Schuldner unsere erste Zahlungsaufforderung gesendet.</p>",
"legal_stage": "dunning",
"processing_state": "open",
"created": "2023-07-15T10:23:45.678901Z",
"downloads": [
{
"id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"filename": "zahlungsaufforderung.pdf",
"mime_type": "application/pdf",
"file_size": 145632,
"download_url": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/statusupdates/095be615-a8ad-4c33-8e9c-c7612fbf6c9f/download/a1b2c3d4-e5f6-7890-1234-567890abcdef/"
},
{
"id": "f6e5d4c3-b2a1-9876-5432-1abcdef67890",
"filename": "einschreiben_nachweis.jpg",
"mime_type": "image/jpeg",
"file_size": 89421,
"download_url": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/statusupdates/095be615-a8ad-4c33-8e9c-c7612fbf6c9f/download/f6e5d4c3-b2a1-9876-5432-1abcdef67890/"
}
]
}Authorizations
tokenAuthtokenAuth
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
200 - application/json
Mixin to provide download URLs for status update file attachments. Reusable across different status update serializers.
extrajudicial- Außergerichtlichjudicial_dunning- Gerichtliches Mahnverfahrenforeclosure- Zwangsvollstreckunglong_term_monitoring- In Langzeitüberwachungended- Beendet
Available options:
extrajudicial, judicial_dunning, foreclosure, long_term_monitoring, ended in_progress- Laufendpaused- Pausiertcanceled_by_client- Abgebrochen durch Mandantcanceled_by_service_provider- Abgebrochen durch unsended- Beendet
Available options:
in_progress, paused, canceled_by_client, canceled_by_service_provider, ended List of file attachments with metadata and download URLs.
Show child attributes
Show child attributes
