personCertification resource type

Namespace: microsoft.graph

Represents a certification or designation which has been associated with a user's profile.

Inherits from itemFacet.

Methods

Method Return type Description
List certifications personCertification collection Get the personCertification resources from the certifications navigation property.
Create personCertification personCertification Create a new personCertification object.
Get personCertification personCertification Read the properties and relationships of an personCertification object.
Update personCertification personCertification Update the properties of an personCertification object.
Delete personCertification None Deletes an personCertification object.

Properties

Property Type Description
allowedAudiences String The audiences that are able to see the values contained within the entity. Inherited from itemFacet. Possible values are: me, family, contacts, groupMembers, organization, federatedOrganizations, everyone, unknownFutureValue.
certificationId String The referenceable identifier for the certification.
createdBy identitySet Provides the identifier of the user and/or application that created the entity. Inherited from itemFacet.
createdDateTime DateTimeOffset Provides the dateTimeOffset for when the entity was created. Inherited from itemFacet.
description String Description of the certification.
displayName String Title of the certification.
endDate Date The date that the certification expires.
id String Identifier used for individually addressing the entity. Inherited from entity
inference inferenceData Contains inference detail if the entity is inferred by the creating or modifying application. Inherited from itemFacet.
issuedDate Date The date that the certification was issued.
issuingAuthority String Authority which granted the certification.
issuingCompany String Company which granted the certification.
lastModifiedBy identitySet Provides the identifier of the user and/or application that last modified the entity. Inherited from itemFacet.
lastModifiedDateTime DateTimeOffset Provides the dateTimeOffset for when the entity was created. Inherited from itemFacet.
source personDataSource Where the values originated if synced from another service. Inherited from itemFacet.
startDate Date The date that the certification became valid.
thumbnailUrl String URL referencing a thumbnail of the certification.
webUrl String URL referencing the certification.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.personCertification",
  "id": "String (identifier)",
  "allowedAudiences": "String",
  "inference": {
    "@odata.type": "microsoft.graph.inferenceData"
  },
  "createdDateTime": "String (timestamp)",
  "createdBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "lastModifiedDateTime": "String (timestamp)",
  "lastModifiedBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "source": {
    "@odata.type": "microsoft.graph.personDataSource"
  },
  "certificationId": "String",
  "description": "String",
  "displayName": "String",
  "endDate": "Date",
  "issuedDate": "Date",
  "issuingAuthority": "String",
  "issuingCompany": "String",
  "startDate": "Date",
  "thumbnailUrl": "String",
  "webUrl": "String"
}