Patch an existing license

Allows you to change a license's restriction or approved status.

Request
path Parameters
licenseId
required
string <uuid>

Identifier of the license to patch.

Request Body schema: application/json
restrictionStatus
string

If set, the license's restriction status will be updated with this value.

Enum: "None" "Restricted" "Unrestricted"
approvedStatus
string

If set, the license's approved status will be updated with this value.

Enum: "Pending" "Yes" "No"
object (NonVerifiedLicenseInfoModel)
isCurrentlyPracticing
boolean

If set, the license's isCurrentlyPracticing flag will be updated with this value.

isPrimary
boolean

If set, the license's isPrimary flag will be updated with this value.

prescriptiveAuthority
string
Enum: "RequiredMet" "RequiredNotMet" "NotRequired"
collaboratingProviderId
string <uuid>
Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Server Error

patch/licenses/{licenseId}
Request samples
application/json
{
  • "restrictionStatus": "NotRestricted",
  • "approvedStatus": "Yes"
}
Response samples
application/json
{
  • "providerId": "4834bcdc-4a64-444d-966b-1a6fe381da24",
  • "licenseNumber": "string",
  • "firstName": "string",
  • "lastName": "string",
  • "state": "AL",
  • "jobStatus": "Idle",
  • "nonVerifiedInfo": {
    },
  • "currentVerificationStatus": "Found",
  • "currentVerification": {
    },
  • "restrictionStatus": "None",
  • "approvedStatus": "Pending",
  • "isPrimary": true,
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "isCurrentlyPracticing": true,
  • "prescriptiveAuthority": "RequiredMet",
  • "collaboratingProviderId": "79ac5e55-1b65-4bd8-a907-2b31ef7aa4a6",
  • "licenseType": {
    }
}