v1
latestOpenAPI 3.1.02026-07-2466150275.0 KBCertificate Types
Update Certificate Type
Given a certificate type ID, update the certificate type.
Note: this will also update the cerficate type slug.
put/v1/certificate/type/{certificate_type_id}/
Path parameters
certificate_type_idinteger required
Request body
Example request
{
"name": "First Aid",
"required": true
}Response
Successful Response
Example response
{
"data": {
"name": "First Aid",
"required": true,
"id": 1,
"slug": "first-aid"
}
}