Retrieve all
GEThttps://api.envizage.me/scenarios/:scenarioId/persons/:personId/insurances/life
List all life insurance policies a person currently holds.
Request
Path Parameters
scenarioId stringrequired
The scenario's id
personId stringrequired
The person's id
Query Parameters
page integer
Zero-based page index (0..N)
size integer
Default value: 20
The size of the page to be returned
sort string[]
Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
Responses
- 200
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
content object[]
empty boolean
first boolean
last boolean
number int32
numberOfElements int32
pageable object
size int32
sort object
totalElements int64
totalPages int32
{
"content": [
{
"description": "My resource's description",
"endDate": "2031-01-01T00:00:00.000Z",
"endsOn": "ON_DEATH",
"frequency": "ANNUALLY",
"id": "1",
"joint": true,
"name": "My resource",
"payout": 100000,
"payoutCurrency": "GBP",
"properties": {
"property_1": "Value of property 1",
"property_2": "Value of property 2"
},
"source": "Source of the resource",
"startDate": "2030-01-01T00:00:00.000Z",
"startsOn": "USER_DEFINED"
}
],
"empty": true,
"first": true,
"last": true,
"number": 0,
"numberOfElements": 0,
"pageable": {
"offset": 0,
"pageNumber": 0,
"pageSize": 0,
"paged": true,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"unpaged": true
},
"size": 0,
"sort": {
"empty": true,
"sorted": true,
"unsorted": true
},
"totalElements": 0,
"totalPages": 0
}
Not Found
Internal Server Error
Authorization: openIdConnect
name: authenticationtype: openIdConnectscopes: scenarios:full,scenarios:read
bearerFormat: JWTopenIdConnectUrl: https://id.production.envizage.me/realms/:realmId/protocol/openid-connectscheme: Bearer
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://api.envizage.me/scenarios/:scenarioId/persons/:personId/insurances/life' \
-H 'Accept: application/json'
ResponseClear