| description |
Automatically generated file. DO NOT MODIFY |
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph import GraphServiceClient
from msgraph.generated.models.security.citation_template import CitationTemplate
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = CitationTemplate(
odata_type = "#microsoft.graph.security.citationTemplate",
display_name = "Contoso Company Policy",
citation_url = "www.citationUrl.com",
citation_jurisdiction = "Contoso",
)
result = await graph_client.security.labels.citations.post(request_body)