List requests to client for a mandate
curl --request GET \
--url https://api.paywise.de/v1/mandates/{mandate_id}/requests-to-client/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.paywise.de/v1/mandates/{mandate_id}/requests-to-client/"
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/{mandate_id}/requests-to-client/', 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/{mandate_id}/requests-to-client/",
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/{mandate_id}/requests-to-client/"
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/{mandate_id}/requests-to-client/")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.paywise.de/v1/mandates/{mandate_id}/requests-to-client/")
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{
"count": 123,
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100",
"results": [
{
"count": 3,
"next": null,
"previous": null,
"results": [
{
"id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"href": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/requests-to-client/a1b2c3d4-e5f6-7890-1234-567890abcdef/",
"mandate": {
"id": "5600672e-2bfa-488c-b23a-460c1dd1f833",
"href": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/",
"reference_number": "K25-8Q114"
},
"title": "Rückfrage zur Forderung",
"description": "Bitte bestätigen Sie die offene Forderung in Höhe von 1.234,56 EUR. Der Schuldner behauptet, bereits eine Teilzahlung geleistet zu haben.",
"allowed_answer_types": "yes-no",
"file_attachments": [
{
"id": "f6e5d4c3-b2a1-9876-5432-1abcdef67890",
"filename": "schuldner_beleg.pdf",
"mime_type": "application/pdf",
"file_size": 145632,
"download_url": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/requests-to-client/a1b2c3d4-e5f6-7890-1234-567890abcdef/attachments/f6e5d4c3-b2a1-9876-5432-1abcdef67890/download/"
}
],
"answered": false,
"answer": null,
"created": "2025-11-20T10:30:00Z",
"answered_at": null
},
{
"id": "b2c3d4e5-f6a7-5e44-9f0a-d8e9f0a1b2c3",
"href": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/requests-to-client/b2c3d4e5-f6a7-5e44-9f0a-d8e9f0a1b2c3/",
"mandate": {
"id": "5600672e-2bfa-488c-b23a-460c1dd1f833",
"href": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/",
"reference_number": "K25-8Q114"
},
"title": "Dokumente angefordert",
"description": "Wir benötigen eine Kopie der Originalrechnung zur Prüfung.",
"allowed_answer_types": "fileupload",
"file_attachments": [],
"answered": true,
"answer": {
"id": "c3d4e5f6-a7b8-6f55-0a1b-e9f0a1b2c3d4",
"text": "Anbei die angeforderten Dokumente.",
"additional_comment": null,
"files": [
{
"id": "d4e5f6a7-b8c9-0123-4567-890abcdef012",
"filename": "rechnung_RE2023001.pdf",
"mime_type": "application/pdf",
"file_size": 234567
}
],
"created": "2025-11-16T14:22:00Z"
},
"created": "2025-11-15T08:00:00Z",
"answered_at": "2025-11-16T14:22:00Z"
}
]
}
]
}Mandates
List requests to client for a mandate
List all requests to client (questions from paywise to you) for a specific mandate. Use the answered query parameter to filter by answered/unanswered status.
GET
/
v1
/
mandates
/
{mandate_id}
/
requests-to-client
/
List requests to client for a mandate
curl --request GET \
--url https://api.paywise.de/v1/mandates/{mandate_id}/requests-to-client/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.paywise.de/v1/mandates/{mandate_id}/requests-to-client/"
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/{mandate_id}/requests-to-client/', 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/{mandate_id}/requests-to-client/",
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/{mandate_id}/requests-to-client/"
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/{mandate_id}/requests-to-client/")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.paywise.de/v1/mandates/{mandate_id}/requests-to-client/")
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{
"count": 123,
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100",
"results": [
{
"count": 3,
"next": null,
"previous": null,
"results": [
{
"id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
"href": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/requests-to-client/a1b2c3d4-e5f6-7890-1234-567890abcdef/",
"mandate": {
"id": "5600672e-2bfa-488c-b23a-460c1dd1f833",
"href": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/",
"reference_number": "K25-8Q114"
},
"title": "Rückfrage zur Forderung",
"description": "Bitte bestätigen Sie die offene Forderung in Höhe von 1.234,56 EUR. Der Schuldner behauptet, bereits eine Teilzahlung geleistet zu haben.",
"allowed_answer_types": "yes-no",
"file_attachments": [
{
"id": "f6e5d4c3-b2a1-9876-5432-1abcdef67890",
"filename": "schuldner_beleg.pdf",
"mime_type": "application/pdf",
"file_size": 145632,
"download_url": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/requests-to-client/a1b2c3d4-e5f6-7890-1234-567890abcdef/attachments/f6e5d4c3-b2a1-9876-5432-1abcdef67890/download/"
}
],
"answered": false,
"answer": null,
"created": "2025-11-20T10:30:00Z",
"answered_at": null
},
{
"id": "b2c3d4e5-f6a7-5e44-9f0a-d8e9f0a1b2c3",
"href": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/requests-to-client/b2c3d4e5-f6a7-5e44-9f0a-d8e9f0a1b2c3/",
"mandate": {
"id": "5600672e-2bfa-488c-b23a-460c1dd1f833",
"href": "https://api.paywise.de/v1/mandates/5600672e-2bfa-488c-b23a-460c1dd1f833/",
"reference_number": "K25-8Q114"
},
"title": "Dokumente angefordert",
"description": "Wir benötigen eine Kopie der Originalrechnung zur Prüfung.",
"allowed_answer_types": "fileupload",
"file_attachments": [],
"answered": true,
"answer": {
"id": "c3d4e5f6-a7b8-6f55-0a1b-e9f0a1b2c3d4",
"text": "Anbei die angeforderten Dokumente.",
"additional_comment": null,
"files": [
{
"id": "d4e5f6a7-b8c9-0123-4567-890abcdef012",
"filename": "rechnung_RE2023001.pdf",
"mime_type": "application/pdf",
"file_size": 234567
}
],
"created": "2025-11-16T14:22:00Z"
},
"created": "2025-11-15T08:00:00Z",
"answered_at": "2025-11-16T14:22:00Z"
}
]
}
]
}Authorizations
tokenAuthtokenAuth
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Filter by answered status (true=answered, false=unanswered)
Number of results to return per page.
The initial index from which to return the results.
⌘I
