Which IIQ version are you inquiring about?
8.3
Is it possible to add tags to a certification after they have completed or are in progress?
8.3
Is it possible to add tags to a certification after they have completed or are in progress?
Yes you can use API to add Tags ,
were you want to add tag CertificationDefinition or Certification object ?
Share screenshot that would be easy to know .
I just wanted to know if it’s possible and how to do it if so. I’m open to adding anywhere.
Hi @LCaulder2,
you can use the API to add these tags
</>
PUT /api/certifications/{certificationId}
Content-Type: application/json
{
“tags”: [“newTag1”, “newTag2”]
}
</>
The tag values are stored in the spt_tag table in the IdentityIQ database. The “name” column contains the literal string value of the tag, while the “id” column stores the unique identifier (GUID) of the tag.
These GUIDs are then referenced in the spt_certification_tags and spt_certification_def_tags tables to associate the tags with specific certifications and certification group definitions
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.