Skip to main content
PUT
/
api
/
{portfolio}
/
portfolios
/
v1
/
facilities
/
{facilityUuid}
/
coverageOptions
Update facility coverage options
curl --request PUT \
  --url https://public-api.prd.monument.io/api/{portfolio}/portfolios/v1/facilities/{facilityUuid}/coverageOptions \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
[
  {
    "coverageUuid": "11111-11111-11111-11111-11111",
    "isDefault": false,
    "allowNewEnrollments": true
  }
]
'
[
  {
    "coverageUuid": "11111-11111-11111-11111-11111",
    "isDefault": false,
    "allowNewEnrollments": true
  }
]

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

Body

application/json

Array of coverage options to update for the facility

coverageUuid
string<uuid>
required

Coverage uuid to be related to the specified facility

Example:

"11111-11111-11111-11111-11111"

isDefault
boolean
required

Defines if the coverage is the default option selected for the facility

Example:

false

allowNewEnrollments
boolean
required

Defines if the coverage is available for new enrollments

Example:

true

Response

200 - application/json

Coverage options updated successfully

coverageUuid
string<uuid>
required

Coverage uuid to be related to the specified facility

Example:

"11111-11111-11111-11111-11111"

isDefault
boolean
required

Defines if the coverage is the default option selected for the facility

Example:

false

allowNewEnrollments
boolean
required

Defines if the coverage is available for new enrollments

Example:

true