Patch an existing payer plan

Allows you to change a payer plan's name or other data properties.

Request
path Parameters
payerPlanId
required
string <uuid>

Identifier of the payer plan to patch.

Request Body schema: application/json
name
string

If set, the payer's name will be updated with this value.

payerId
string <uuid>

If set, the Id of the payer assosiated with this plan will be updated with this value.

state
string

If specified, US state 2-letter code will be set for this payer plan.

Enum: "AL" "AK" "AZ" "AR" "CA" "CO" "CT" "DE" "DC" "FL" "GA" "HI" "ID" "IL" "IN" "IA" "KS" "KY" "LA" "ME" "MD" "MA" "MI" "MN" "MS" "MO" "MT" "NE" "NV" "NH" "NJ" "NM" "NY" "NC" "ND" "OH" "OK" "OR" "PA" "RI" "SC" "SD" "TN" "TX" "UT" "VT" "VA" "WA" "WV" "WI" "WY" "AS" "GU" "MP" "PR" "VI"
Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Server Error

patch/payer-plans/{payerPlanId}
Request samples
application/json
{
  • "name": "string"
}
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "payerId": "f612112b-802d-496d-9650-880c09cb2f34",
  • "state": "AL",
  • "displayName": "string"
}