Loading

DFS InsurProductConfigurationService API (latest)

Download OpenAPI specification:Download

Contains functionality around insurance product configuration.

For endpoints that support localization the language can be passed either as a query string parameter (using the name 'language') or in the 'accept-language' header.
If no language is passed to such endpoints then the default configured language will be used.

GlobalData

Retrieve all global reference values

Returns all available global reference values.

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

500

Internal Server Error

get/v1.0/global-data/reference-values
https://example-host/v1.0/global-data/reference-values

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "referenceValues":
    [
    ]
}

Retrieve all global rules

Returns all available global rules.

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

500

Internal Server Error

get/v1.0/global-data/rules
https://example-host/v1.0/global-data/rules

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "rules":
    [
    ]
}

Retrieves all global composite rules

Returns all available global composite rules.

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

500

Internal Server Error

get/v1.0/global-data/composite-rules
https://example-host/v1.0/global-data/composite-rules

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "compositeRules":
    [
    ]
}

Retrieve all parameters

Retrieve all available global parameters.

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

500

Internal Server Error

get/v1.0/global-data/parameters
https://example-host/v1.0/global-data/parameters

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "globalParameter":
    {
    }
}

Retrieve all composite parameters

Retrieve all available global composite parameters.

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

500

Internal Server Error

get/v1.0/global-data/composite-parameters
https://example-host/v1.0/global-data/composite-parameters

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "globalParameter":
    {
    }
}

Retrieve all lookups

Retrieve all available lookups

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

500

Internal Server Error

get/v1.0/global-data/lookups
https://example-host/v1.0/global-data/lookups

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "lookups":
    [
    ]
}

Retrieve all global parameters merged with schema parameters

Retrieve all available global parameters merged with schema parameters

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

500

Internal Server Error

get/v1.0/global-data/parameters/schema-parameters-integrated
https://example-host/v1.0/global-data/parameters/schema-parameters-integrated

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "parameters":
    {
    }
}

Retrieve all global composite parameters merged with schema composite parameters

Retrieve all available global composite parameters merged with schema composite parameters

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

500

Internal Server Error

get/v1.0/global-data/composite-parameters/schema-parameters-integrated
https://example-host/v1.0/global-data/composite-parameters/schema-parameters-integrated

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "compositeParameters":
    {
    }
}

Retrieve all requested global data

Retrieve all available global data that is being requested.

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:

Defines data that should be returned

getCompositeParameters
boolean
getParameters
boolean
getReferenceValues
boolean
getRules
boolean
getCompositeRules
boolean
getLookups
boolean
getMergedParameters
boolean
getMergedCompositeParameters
boolean

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

post/v1.0/global-data
https://example-host/v1.0/global-data

Request samples

Content type
Copy
Expand all Collapse all
{
  • "getCompositeParameters": true,
  • "getParameters": true,
  • "getReferenceValues": true,
  • "getRules": true,
  • "getCompositeRules": true,
  • "getLookups": true,
  • "getMergedParameters": true,
  • "getMergedCompositeParameters": true
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "rules":
    [
    ],
  • "compositeRules":
    [
    ],
  • "referenceValues":
    [
    ],
  • "parametersSchema":
    {
    },
  • "compositeParametersSchema":
    {
    },
  • "lookups":
    [
    ],
  • "mergedParametersSchema":
    {
    },
  • "mergedCompositeParametersSchema":
    {
    },
  • "groupCode": "string"
}

Retrieve all requested documents data

Retrieve all available documents data that is being requested

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:

Defines data that should be returned

getCategories
boolean

Indicates should categories be retrieved

getDocuments
boolean

Indicates should documents be retrieved

getTemplates
boolean

Indicates should templates be retrieved

getTypes
boolean

Indicates should types be retrieved

isActive
boolean Nullable

Represents search criteria by IsActive property Relevant for categories retrieval, indirectly for documents retrieval

documentTypeId
integer <int32> Nullable

Represents search criteria by DocumentTypeId property Relevant for categories retrieval, indirectly for documents retrieval

documentMetadataName
string Nullable

Represent search criteria by DocumentMetadataName property Relevant for documents retrieval

language
string Nullable

Represent search criteria by Language property Relevant for categories retrieval, indirectly for documents retrieval

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

post/v1.0/global-data/documents
https://example-host/v1.0/global-data/documents

Request samples

Content type
Copy
Expand all Collapse all
{
  • "getCategories": true,
  • "getDocuments": true,
  • "getTemplates": true,
  • "getTypes": true,
  • "isActive": true,
  • "documentTypeId": 0,
  • "documentMetadataName": "string",
  • "language": "string"
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "categories":
    [
    ],
  • "documents":
    [
    ],
  • "templates":
    [
    ],
  • "types":
    [
    ]
}

Retrieve all requested notifications data

Retrieve all available

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:
getTypes
boolean

Indicates should types be retrieved

getTypeChannels
boolean

Inidicates should type channels be retrieved

typeKeyPrefix
string Nullable

Represent search criteria for type key prefix

isActive
boolean Nullable

Represent search criteria for IsActive property

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

post/v1.0/global-data/notifications
https://example-host/v1.0/global-data/notifications

Request samples

Content type
Copy
Expand all Collapse all
{
  • "getTypes": true,
  • "getTypeChannels": true,
  • "typeKeyPrefix": "string",
  • "isActive": true
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "types":
    [
    ]
}

InsuranceProducts

Get all products

Gets all the products.

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

500

Internal Server Error

get/v1.0/insuranceproducts
https://example-host/v1.0/insuranceproducts

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "products":
    [
    ]
}

Create product definition

Create new product definition

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:
name
string Nullable
description
string Nullable
type
string Nullable
lineOfBusiness
string Nullable
insuranceCarrier
string Nullable
offerIdentifierFormat
string Nullable
policyIdentifierFormat
string Nullable
contractIdentifierFormat
string Nullable
insuranceHolderType
string (InsuranceHolderType)
Enum: "Person" "LegalEntity"
createdBy
integer <int32>
businessStateMachine
object (ProductBusinessStateMachine)
policyDuration
object (PolicyDuration)
documents
Array of objects (Api.Products.Definition.Outputs.Documents.Document) Nullable
notifications
Array of objects (Notification) Nullable

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

post/v1.0/insuranceproducts
https://example-host/v1.0/insuranceproducts

Request samples

Content type
Copy
Expand all Collapse all
{
  • "name": "string",
  • "description": "string",
  • "type": "string",
  • "lineOfBusiness": "string",
  • "insuranceCarrier": "string",
  • "offerIdentifierFormat": "string",
  • "policyIdentifierFormat": "string",
  • "contractIdentifierFormat": "string",
  • "insuranceHolderType": "Person",
  • "createdBy": 0,
  • "businessStateMachine":
    {
    },
  • "policyDuration":
    {
    },
  • "documents":
    [
    ],
  • "notifications":
    [
    ]
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "code": "string"
}

<no summary>

Authorizations:
path Parameters
code
required
string <uuid>
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

get/v1.0/insuranceproducts/{code}
https://example-host/v1.0/insuranceproducts/{code}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "productDefinition":
    {
    }
}

Update product details

Update product details.

Authorizations:
path Parameters
code
required
string <uuid>

Product code

header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:

Patch product definition request

code
string <uuid>
name
string Nullable
description
string Nullable
type
string Nullable
lineOfBusiness
string Nullable
insuranceCarrier
string Nullable
offerIdentifierFormat
string Nullable
policyIdentifierFormat
string Nullable
contractIdentifierFormat
string Nullable
status
string (ProductDefinitionStatus)
Enum: "Unknown" "Draft" "Approved" "Rejected" "Obsolete"
insuranceHolderType
string (InsuranceHolderType)
Enum: "Person" "LegalEntity"
createdBy
integer <int32>
businessStateMachine
object (ProductBusinessStateMachine)
policyDuration
object (PolicyDuration)
documents
Array of objects (Api.Products.Definition.Outputs.Documents.Document) Nullable
notifications
Array of objects (Notification) Nullable

Responses

204

No Content

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

put/v1.0/insuranceproducts/{code}
https://example-host/v1.0/insuranceproducts/{code}

Request samples

Content type
Copy
Expand all Collapse all
{
  • "code": "string",
  • "name": "string",
  • "description": "string",
  • "type": "string",
  • "lineOfBusiness": "string",
  • "insuranceCarrier": "string",
  • "offerIdentifierFormat": "string",
  • "policyIdentifierFormat": "string",
  • "contractIdentifierFormat": "string",
  • "status": "Unknown",
  • "insuranceHolderType": "Person",
  • "createdBy": 0,
  • "businessStateMachine":
    {
    },
  • "policyDuration":
    {
    },
  • "documents":
    [
    ],
  • "notifications":
    [
    ]
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "code": "BadRequest",
  • "subCode": "NA",
  • "message": "The request was not in the required format",
  • "correlationId": "30d3ebc0b5cb47b0889850bbdfe4aec6"
}

GetLatestProductVersion

Authorizations:
path Parameters
code
required
string <uuid>
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

get/v1.0/insuranceproducts/{code}/version/latest
https://example-host/v1.0/insuranceproducts/{code}/version/latest

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "code": "string",
  • "productDefinitionCode": "string",
  • "productDefinition":
    {
    },
  • "version": "string",
  • "createDate": "2026-03-25T10:13:57Z",
  • "createdBy": 0,
  • "status": "Unknown",
  • "statusChangeDate": "2026-03-25T10:13:57Z",
  • "statusChangedBy": 0,
  • "riskParametersSchema":
    {
    },
  • "pricingOutputSchema":
    {
    },
  • "backOfficeDataSchema":
    {
    },
  • "systemDataSchema":
    {
    },
  • "rules":
    [
    ],
  • "uwRules":
    [
    ],
  • "referenceValues":
    [
    ],
  • "documents":
    [
    ],
  • "notifications":
    [
    ]
}

GetProductVersionByProductAndVersionCodes

Authorizations:
path Parameters
productCode
required
string <uuid>
productVersion
required
string <uuid>
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

get/v1.0/insuranceproducts/{productCode}/version/{productVersion}
https://example-host/v1.0/insuranceproducts/{productCode}/version/{productVersion}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "code": "string",
  • "productDefinitionCode": "string",
  • "productDefinition":
    {
    },
  • "version": "string",
  • "createDate": "2026-03-25T10:13:57Z",
  • "createdBy": 0,
  • "status": "Unknown",
  • "statusChangeDate": "2026-03-25T10:13:57Z",
  • "statusChangedBy": 0,
  • "riskParametersSchema":
    {
    },
  • "pricingOutputSchema":
    {
    },
  • "backOfficeDataSchema":
    {
    },
  • "systemDataSchema":
    {
    },
  • "rules":
    [
    ],
  • "uwRules":
    [
    ],
  • "referenceValues":
    [
    ],
  • "documents":
    [
    ],
  • "notifications":
    [
    ]
}

GetProductVersionByVersionCode

Authorizations:
path Parameters
code
required
string <uuid>
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

get/v1.0/insuranceproducts/version/{code}
https://example-host/v1.0/insuranceproducts/version/{code}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "code": "string",
  • "productDefinitionCode": "string",
  • "productDefinition":
    {
    },
  • "version": "string",
  • "createDate": "2026-03-25T10:13:57Z",
  • "createdBy": 0,
  • "status": "Unknown",
  • "statusChangeDate": "2026-03-25T10:13:57Z",
  • "statusChangedBy": 0,
  • "riskParametersSchema":
    {
    },
  • "pricingOutputSchema":
    {
    },
  • "backOfficeDataSchema":
    {
    },
  • "systemDataSchema":
    {
    },
  • "rules":
    [
    ],
  • "uwRules":
    [
    ],
  • "referenceValues":
    [
    ],
  • "documents":
    [
    ],
  • "notifications":
    [
    ]
}

Retrieve Compiled global parameters

Authorizations:
path Parameters
code
required
string <uuid>
getParameters
required
boolean
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

get/v1.0/insuranceproducts/version/{code}/getParameters/{getParameters}/sample
https://example-host/v1.0/insuranceproducts/version/{code}/getParameters/{getParameters}/sample

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "code": "BadRequest",
  • "subCode": "NA",
  • "message": "The request was not in the required format",
  • "correlationId": "30d3ebc0b5cb47b0889850bbdfe4aec6"
}

Update product version status

Authorizations:
path Parameters
code
required
string <uuid>
versionCode
required
string <uuid>
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:
status
string (ProductDefinitionStatus)
Enum: "Unknown" "Draft" "Approved" "Rejected" "Obsolete"

Responses

204

No Content

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

patch/v1.0/insuranceproducts/{code}/version{versionCode}/change-status
https://example-host/v1.0/insuranceproducts/{code}/version{versionCode}/change-status

Request samples

Content type
Copy
Expand all Collapse all
{
  • "status": "Unknown"
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "code": "BadRequest",
  • "subCode": "NA",
  • "message": "The request was not in the required format",
  • "correlationId": "30d3ebc0b5cb47b0889850bbdfe4aec6"
}

Search products

Get all products based on search criteria.

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:
page
integer <int32>
pageSize
integer <int32>

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

post/v1.0/insuranceproducts/search
https://example-host/v1.0/insuranceproducts/search

Request samples

Content type
Copy
Expand all Collapse all
{
  • "page": 0,
  • "pageSize": 0
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "results":
    [
    ],
  • "page": 0,
  • "pageSize": 0,
  • "pageCount": 0,
  • "totalCount": 0
}

Update product details

Update product details.

Authorizations:
path Parameters
code
required
string <uuid>

Product code

header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:

Product version request

code
string <uuid>
version
string Nullable

Formed as x.y.z x -> schema changes y -> rules/reference values changes z -> Documents and notification changes

createdBy
integer <int32>
statusChangeDate
string <date-time> Nullable
statusChangedBy
integer <int32> Nullable
riskParametersSchema
object (DataSchemaParameter)
pricingOutputSchema
object (DataSchemaParameter)
backOfficeDataSchema
object (DataSchemaParameter)
systemDataSchema
object (DataSchemaParameter)
rules
Array of objects (ProductVersionRule) Nullable
uwRules
Array of objects (ProductVersionRule) Nullable
referenceValues
Array of objects (ProductVersionReferenceValue) Nullable
documents
Array of objects (ProductVersionDocument) Nullable
notifications
Array of objects (ProductVersionNotification) Nullable

Responses

204

No Content

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

post/v1.0/insuranceproducts/{code}/newVersion
https://example-host/v1.0/insuranceproducts/{code}/newVersion

Request samples

Content type
Copy
Expand all Collapse all
{
  • "code": "string",
  • "version": "string",
  • "createdBy": 0,
  • "statusChangeDate": "2026-03-25T10:13:57Z",
  • "statusChangedBy": 0,
  • "riskParametersSchema":
    {
    },
  • "pricingOutputSchema":
    {
    },
  • "backOfficeDataSchema":
    {
    },
  • "systemDataSchema":
    {
    },
  • "rules":
    [
    ],
  • "uwRules":
    [
    ],
  • "referenceValues":
    [
    ],
  • "documents":
    [
    ],
  • "notifications":
    [
    ]
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "code": "BadRequest",
  • "subCode": "NA",
  • "message": "The request was not in the required format",
  • "correlationId": "30d3ebc0b5cb47b0889850bbdfe4aec6"
}

Generate sample JSON model for provided Form.io schema definition

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:
schema
required
string non-empty

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

post/v1.0/insuranceproducts/utilities/modelSample
https://example-host/v1.0/insuranceproducts/utilities/modelSample

Request samples

Content type
Copy
Expand all Collapse all
{
  • "schema": "string"
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "code": "BadRequest",
  • "subCode": "NA",
  • "message": "The request was not in the required format",
  • "correlationId": "30d3ebc0b5cb47b0889850bbdfe4aec6"
}

Execute MS rule expressions against provided Form.io schema definition. If there are error they will be returned in response for each rule

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:
schema
required
any
expressions
required
Array of objects (RuleModel)
referenceValues
Array of objects (ReferenceValue) Nullable
sampleRequest
string Nullable

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

post/v1.0/insuranceproducts/utilities/validateExpressionSyntax
https://example-host/v1.0/insuranceproducts/utilities/validateExpressionSyntax

Request samples

Content type
Copy
Expand all Collapse all
{
  • "schema": null,
  • "expressions":
    [
    ],
  • "referenceValues":
    [
    ],
  • "sampleRequest": "string"
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "property1": "string",
  • "property2": "string"
}

VerifyRiskParameters

Authorizations:
path Parameters
productCode
required
string <uuid>
productVersion
required
string <uuid>
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:
property name*
object (JsonNode)

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

post/v1.0/insuranceproducts/{productCode}/version/{productVersion}/verifyRiskParametersModel
https://example-host/v1.0/insuranceproducts/{productCode}/version/{productVersion}/verifyRiskParametersModel

Request samples

Content type
Copy
Expand all Collapse all
{
  • "property1":
    {
    },
  • "property2":
    {
    }
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "modelValidationErrors":
    [
    ],
  • "ruleError": "string",
  • "isModelInvalid": true,
  • "areRulesInvalid": true
}

Search product versions

Retrieve all product versions filtered by parameters

Authorizations:
header Parameters
Accept-Language
string

The ISO 639-1 language to use for localizable data.

Request Body schema:
page
integer <int32>
pageSize
integer <int32>
productDefinitionCode
string <uuid>
status
string (ProductDefinitionStatus)
Enum: "Unknown" "Draft" "Approved" "Rejected" "Obsolete"

Responses

200

OK

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

422

UnprocessableEntity

500

Internal Server Error

post/v1.0/insuranceproducts/versions/search
https://example-host/v1.0/insuranceproducts/versions/search

Request samples

Content type
Copy
Expand all Collapse all
{
  • "page": 0,
  • "pageSize": 0,
  • "productDefinitionCode": "string",
  • "status": "Unknown"
}

Response samples

Content type
application/json
Copy
Expand all Collapse all
{
  • "results":
    [
    ],
  • "page": 0,
  • "pageSize": 0,
  • "pageCount": 0,
  • "totalCount": 0
}