Change an existing provider's liability insurance

Change an existing liability insurance associated with the specified provider.

Request
path Parameters
providerId
required
string <uuid>
id
required
string <uuid>
Request Body schema: application/json
name
string

Name of insurance

isSelfInsured
boolean

Indicates whether the provider is self insured

originalEffectiveDate
string <date-time>

Timestamp of when the initial insurance coverage became effective

currentEffectiveDate
string <date-time>

Timestamp of when the current insurance coverage became effective

currentExpirationDate
string <date-time>

Timestamp of when the current insurance expires

coverageType
string

Insurance type of coverage

Enum: "Individual" "Shared" "Occurrence" "ClaimsMade"
isUnlimitedCoverage
boolean

Does this insurance have unlimited coverage?

includesTailCoverage
boolean

Indicates tail coverage status

occurrenceCoverageAmount
number <double>

Amount of coverage provided by this insurance per occurrence

aggregateCoverageAmount
number <double>

Amount of aggregated coverage provided by this insurance

policyNumber
string

Insurance policy number

Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Server Error

patch/providers/{providerId}/info/liabilityInsurances/{id}
Request samples
application/json
{
  • "name": "string",
  • "isSelfInsured": true,
  • "originalEffectiveDate": "2019-08-24T14:15:22Z",
  • "currentEffectiveDate": "2019-08-24T14:15:22Z",
  • "currentExpirationDate": "2019-08-24T14:15:22Z",
  • "coverageType": "Individual",
  • "isUnlimitedCoverage": true,
  • "includesTailCoverage": true,
  • "occurrenceCoverageAmount": 0,
  • "aggregateCoverageAmount": 0,
  • "policyNumber": "string"
}
Response samples
application/json
{
  • "lastUpdatedAt": "2019-08-24T14:15:22Z",
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "isSelfInsured": true,
  • "originalEffectiveDate": "2019-08-24T14:15:22Z",
  • "currentEffectiveDate": "2019-08-24T14:15:22Z",
  • "currentExpirationDate": "2019-08-24T14:15:22Z",
  • "coverageType": "Individual",
  • "isUnlimitedCoverage": true,
  • "includesTailCoverage": true,
  • "occurrenceCoverageAmount": 0,
  • "aggregateCoverageAmount": 0,
  • "policyNumber": "string"
}