Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

Introduction

To obtain the payload of a specific document, the Thinksurance Public API V1, denoted as "the API," offers a specialised endpoint. This endpoint allows consumers to retrieve a document by its identifier (hash) and acquire its complete payload as a base64-encoded data.

Endpoint

To access the specific document, consumers must initiate an HTTP GET POST request to the /api/ipndoc/documentsget/{:documentIdtoken} endpoint. The documentId token parameter represents an unique identifier of the document in questionthe security token acquired during the Authentication process on the API. As essential components of the JSON payload within the body of the request, consumers are required to include the hash (serving as the document identifier) and bToken (functioning as the broker identifier).

Action name

get document

HTTP path

/api/ipndoc/documentsget/{:documentIdtoken}

  • documentId - an unique identifier of the requested document.token - a security token retrieved from Authentication

HTTP method

GETPOST

Attributes of the HTTP request

HTTP Request Header

Authorization

hash

string

required

A security token provided from Authentication endpoint.
Required to provide as a Bearer Token (in format: “Bearer {{token}}“).

X-Broker-Token

An unique identifier of the document.

bToken

string

required

An unique identifier of the broker.

Attributes of the HTTP response

Success response

JSON array of objects containing:

Base64 encoded content of the document.

Failed response

error

string

required

It contains a reason for the failed request.

Examples

This section shows examples of different HTTP requests and responses associated with the endpoint /api/ipndoc/documentsget/{:docuementIdtoken}.

HTTP Request without profession filter

Code Block
languagejson
# HTTP GETPOST
# https://ipnapp.dev.thinksurance.de/api/ipndoc/documents/<some ID>get/{:token}
# # HTTP headers
'Content-Type': 'application/json'
# 'Accept': 'application/json'
{
 # 'Authorization' "hash": 'Bearer <some long"some encrypted string",
value>' # 'X-Broker-Token': '<some hash>'
#  "bToken": "some encrypted string"
}

Successful HTTP Response

Code Block
languagejson
# HTTP 200 status code
# 'Content-Type': 'text/pdf'
#
Base64 encoded payload

Failed HTTP Response

Code Block
languagejson
# HTTP 200 status code
# 'Content-Type': 'application/json'
{
  "error": "API User is not existing or deactivated."
}

...