Patch an existing provider enrollment

Allows you to change a provider enrollment's data properties.

Request
path Parameters
providerEnrollmentId
required
string <uuid>

Identifier of the provider enrollment to patch.

Request Body schema: application/json
payerPlanId
string <uuid>

If set, the provider enrollment's PayerPlanId will be updated with this value.

groupId
string <uuid>

If set, the provider enrollment's GroupId will be updated with this value.

providerId
string <uuid>

If set, the provider enrollment's ProviderId will be updated with this value.

enrollmentStatus
string

If set, the provider enrollment's EnrollmentStatus will be updated with this value.

Enum: "NotSubmitted" "Submitted" "Enrolled" "Denied"
submissionDate
string <date-time>

If set, the provider enrollment's SubmissionDate will be updated with this value.

closedDate
string <date-time>

If set, the provider enrollment's ClosedDate will be updated with this value.

effectiveDate
string <date-time>

If set, the provider enrollment's EffectiveDate will be updated with this value.

networkStatus
string

If set, the provider enrollment's NetworkStatus will be updated with this value.

Enum: "None" "Par" "NonPar"
specialistType
string

If set, the provider enrollment's SpecialistType will be updated with this value.

Enum: "None" "Pcp" "Specialist"
externalProviderPlanId
string

If set, the provider enrollment's ProviderId in external system will be updated with this value.

comments
string

If set, the provider enrollment's Comments will be updated with this value.

Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Server Error

patch/providers/enrollments/{providerEnrollmentId}
Request samples
application/json
{
  • "PayerPlanId": "1704B2EA-098D-4A70-969F-70A5F6B336DE",
  • "EnrollmentStatus": "NotSubmitted",
  • "SubmissionDate": "2000-12-31 23:59"
}
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "payerPlanId": "27ee323c-c7fc-4801-8b25-e1a89b00fea3",
  • "groupId": "eb54e96e-21b8-4f54-9cd4-80fccbd06f55",
  • "providerId": "4834bcdc-4a64-444d-966b-1a6fe381da24",
  • "enrollmentStatus": "NotSubmitted",
  • "submissionDate": "2019-08-24T14:15:22Z",
  • "closedDate": "2019-08-24T14:15:22Z",
  • "effectiveDate": "2019-08-24T14:15:22Z",
  • "networkStatus": "None",
  • "specialistType": "None",
  • "externalProviderPlanId": "string",
  • "comments": "string",
  • "payerPlanModel": {
    },
  • "groupModel": {
    }
}