List all product types
GET/v1/product-types
Retrieves a list of all available insurance product types. Product types refer to the major categories of insurance e.g Health, Automobile, Life, Gadget, Goods in transit, etc
Request
Responses
- 200
- 422
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]
name string
The generally accepted human friendly name
slug string
The unique identifier for technical purposes
{
"data": [
{
"name": "Goods in Transit",
"slug": "GIT"
}
]
}
Unprocessable Content
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "The given data was invalid"
}
Loading...