Claims Asset Management

With the InsureHero Shield API you can upload assets in behalf of your claims. This creates a repository of assets for each claim.

Endpoints

Upload assets

When needed allow users to upload assets to their private repositories.

Upload assets to a claim

POST https://app.insurehero.io/api/shield/v1/claims/:claimId/assets

When you need to add documents, videos or any other type of asset to backup a claim or attach evidence to a risk item event, you will first need to upload those assets to a risk item.

Path Parameters

Name
Type
Description

claimId*

string

The id of a given claim

name

string

Provides descriptive context for the file being uploaded. If you do not provide a name, the name of each loaded asset will be taken as the value

Headers

Name
Type
Description

Authorization*

string

Bearer access token

Content-Type*

string

multipart/form-data

Request Body

Name
Type
Description

files*

Blob[]

The list of files to be uploaded

Each file will be returned with a success or fail status and a public URL in the case of a success.

Keep in mind

  • The maximum file size is 4Mb per file.

  • Only images, videos & PDF MIME types are supported.

Last updated