V1 Get IP Notification for Broker

Introduction

To obtain the payload of multiple inquiries, belonging to one single broker, the Thinksurance Public API V2, denoted as "the API," offers a specialised endpoint. This endpoint allows consumers to retrieve all relevant inquiry information

Endpoint

To search for a list of inquiries belonging to the specific broker, consumers should send a HTTP POST request to endpoint /api/ipn/get/{:token}. The token parameter represents the security token acquired during the Authentication process on the API (see V1 Authentication). As essential components of the JSON payload within the body of the request, consumers are required to include bToken (functioning as the broker identifier).

Action name

search inquiries

HTTP path

/api/ipn/get/{:token}

HTTP method

POST

Attributes of the HTTP request

bToken

string

required

An unique identifier of the broker.

iId

int

optional

An unique identifier of an inquiry.

lastDays

int

optional

If defined, only inquiries that were created or updated that last number of days, will be included in the result. Otherwise, inquiries created or updated in last three months will be included.

Attributes of the HTTP response

See IP Notification Response

Examples

This section shows examples of different HTTP requests and responses associated with the endpoint.

HTTP Request with simple payload

# HTTP POST # https://app.dev.thinksurance.de/api/ipn/get/<some long hash> # # HTTP headers # 'Content-Type': 'application/json' # 'Accept': 'application/json' # { "bToken": "<some encrypted string>" }

HTTP Request with inquiry identifier

# HTTP POST # https://app.dev.thinksurance.de/api/ipn/get/<some long hash> # # HTTP headers # 'Content-Type': 'application/json' # 'Accept': 'application/json' # { "bToken": "<some encrypted string>", "iId": 123456 }

HTTP Request with last days specified

# HTTP POST # https://app.dev.thinksurance.de/api/ipn/get/<some long hash> # # HTTP headers # 'Content-Type': 'application/json' # 'Accept': 'application/json' # { "bToken": "<some encrypted string>", "lastDays": 1 #includes results from today and yesterday }

Successful HTTP Response

Failed HTTP Response