Skip to main content
GET
/
api
/
v1
/
external
/
companies
/
{companyId}
/
custom-objects
List Custom Object Types
curl --request GET \
  --url https://app.aiinsurance.io/api/v1/external/companies/{companyId}/custom-objects \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440010",
      "type": "vehicle",
      "displayNameExpression": "vehicleMake + vehicleModel"
    },
    {
      "id": "550e8400-e29b-41d4-a716-446655440011",
      "type": "building_info",
      "displayNameExpression": null
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header.

Path Parameters

companyId
string<uuid>
required

Company identifier

Response

List of custom object types

items
object[]