Change an existing provider's board certification info

Change an existing board certification info associated with the specified provider.

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

Provider first name mentioned on the board certification. This field will be used for board certification lookup.

lastName
string

Provider last name mentioned on the board certification. This field will be used for board certification lookup.

isPrimary
boolean

If the flag is set, certification will be set as primary for the provider.

boardCertificationNumber
string

A unique Id provided by certification board to the provider. This will be used for board certification lookup.

specialty
string
object (NonVerifiedBoardCertificationInfoModel)
Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Server Error

patch/providers/{providerId}/info/boardCertifications/{id}
Request samples
application/json
{
  • "firstName": "string",
  • "lastName": "string",
  • "isPrimary": true,
  • "boardCertificationNumber": "string",
  • "specialty": "string",
  • "nonVerifiedInfo": {
    }
}
Response samples
application/json
{
  • "lastUpdatedAt": "2019-08-24T14:15:22Z",
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "type": "AmericanBoardofMedicalSpecialties",
  • "firstName": "string",
  • "lastName": "string",
  • "boardCertificationNumber": "string",
  • "specialty": "string",
  • "nonVerifiedInfo": {
    },
  • "isPrimary": true
}