Skip to main content
GET
/
v1
/
mandates
/
{mandate_id}
/
requests-to-client
/
{request_id}
Get request to client details
curl --request GET \
  --url https://api.paywise.de/v1/mandates/{mandate_id}/requests-to-client/{request_id}/ \
  --header 'Authorization: Bearer <token>'
{
  "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
}

Documentation Index

Fetch the complete documentation index at: https://docs.paywise.de/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

mandate_id
string<uuid>
required
request_id
string
required

Response

200 - application/json

Main serializer for RequestToClient in the Public API. Provides full detail view for GET requests.

id
string
required
read-only
href
string
required
read-only
mandate
object
required

Minimal mandate info for RequestToClient responses.

title
string
required
read-only
description
string | null
required
read-only
allowed_answer_types
required
  • None - ---------
  • yes-no - Ja/Nein
  • yes-no-dontknow - Ja/Nein/Weiß nicht
  • fileupload - Freitext + Dateiupload
  • yes-no-freetext-on-no - Ja/Nein + Freitext bei Nein
  • yes-with-date-no-freetext-on-no - Ja + Datum / Nein + Freitext
  • dynamic-form - Dynamisches Formular
Available options:
yes-no,
yes-no-dontknow,
fileupload,
yes-no-freetext-on-no,
yes-with-date-no-freetext-on-no,
dynamic-form
file_attachments
object[]
required
read-only
answered
boolean
required
read-only
answer
object
required

Read-only serializer for displaying answers. Shows text, additional comment, and uploaded files.

created
string<date-time>
required
read-only
answered_at
string<date-time> | null
required
read-only