Skip to main content
PUT
/
api
/
{portfolio}
/
portfolios
/
v1
/
facilities
/
{facilityUuid}
/
rentalRecords
/
{unitRentalRecordUuid}
/
coverage
Update coverage selection for a unit rental
curl --request PUT \
  --url https://public-api.prd.monument.io/api/{portfolio}/portfolios/v1/facilities/{facilityUuid}/rentalRecords/{unitRentalRecordUuid}/coverage \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "coverageUuid": "11111-11111-11111-11111-11111",
  "skipCurrentMonthBill": false
}
'

Headers

x-api-key
any
required

Api key required to authenticate your request. Please reach out to monument for a key.

Example:

"monument-2230012-2312321"

Path Parameters

facilityUuid
string
required
unitRentalRecordUuid
string
required
portfolio
string
required

Body

application/json

Coverage enrollment details

coverageUuid
string<uuid>
required

Coverage uuid to be related to the specified rentalRecord

Example:

"11111-11111-11111-11111-11111"

skipCurrentMonthBill
boolean
default:false
required

Flag to skip the current month bill if the coverage is being added in the middle of the month

Response

200

Coverage updated successfully