A unique identifier that represents the user that created the incident type.
description
string
Text that describes the incident type.
is_default
boolean
If true, this incident type will be used as the default incident type if a type is not specified during the creation of incident resources.
lastModifiedBy
string
A unique identifier that represents the user that last modified the incident type.
modifiedAt
date-time
Timestamp when the incident type was last modified.
name [required]
string
The name of the incident type.
prefix
string
The string that will be prepended to the incident title across the Datadog app.
id [required]
string
The incident type's ID.
relationships
object
The incident type's resource relationships.
created_by_user
object
Relationship to user.
data [required]
object
Relationship to user object.
id [required]
string
A unique identifier that represents the user.
type [required]
enum
Users resource type.
Allowed enum values: users
default: users
google_meet_configuration
object
A reference to a Google Meet Configuration resource.
data [required]
object
The Google Meet configuration relationship data object.
id [required]
string
The unique identifier of the Google Meet configuration.
type [required]
string
The type of the Google Meet configuration.
last_modified_by_user
object
Relationship to user.
data [required]
object
Relationship to user object.
id [required]
string
A unique identifier that represents the user.
type [required]
enum
Users resource type.
Allowed enum values: users
default: users
microsoft_teams_configuration
object
A reference to a Microsoft Teams Configuration resource.
data [required]
object
The Microsoft Teams configuration relationship data object.
id [required]
string
The unique identifier of the Microsoft Teams configuration.
type [required]
string
The type of the Microsoft Teams configuration.
zoom_configuration
object
A reference to a Zoom configuration resource.
data [required]
object
The Zoom configuration relationship data object.
id [required]
string
The unique identifier of the Zoom configuration.
type [required]
string
The type of the Zoom configuration.
type [required]
enum
Incident type resource type.
Allowed enum values: incident_types
default: incident_types
{"data":[{"attributes":{"createdAt":"2019-09-19T10:00:00.000Z","createdBy":"00000000-0000-0000-0000-000000000000","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, or availability of our data.","is_default":false,"lastModifiedBy":"00000000-0000-0000-0000-000000000000","modifiedAt":"2019-09-19T10:00:00.000Z","name":"Security Incident","prefix":"IR"},"id":"00000000-0000-0000-0000-000000000000","relationships":{"created_by_user":{"data":{"id":"00000000-0000-0000-2345-000000000000","type":"users"}},"google_meet_configuration":{"data":{"id":"00000000-0000-0000-0000-000000000000","type":"google_meet_configurations"}},"last_modified_by_user":{"data":{"id":"00000000-0000-0000-2345-000000000000","type":"users"}},"microsoft_teams_configuration":{"data":{"id":"00000000-0000-0000-0000-000000000000","type":"microsoft_teams_configurations"}},"zoom_configuration":{"data":{"id":"00000000-0000-0000-0000-000000000000","type":"zoom_configurations"}}},"type":"incident_types"}]}
"""
Get a list of incident types returns "OK" response
"""fromdatadog_api_clientimportApiClient,Configurationfromdatadog_api_client.v2.api.incidents_apiimportIncidentsApiconfiguration=Configuration()configuration.unstable_operations["list_incident_types"]=TruewithApiClient(configuration)asapi_client:api_instance=IncidentsApi(api_client)response=api_instance.list_incident_types()print(response)
# Get a list of incident types returns "OK" responserequire"datadog_api_client"DatadogAPIClient.configuredo|config|config.unstable_operations["v2.list_incident_types".to_sym]=trueendapi_instance=DatadogAPIClient::V2::IncidentsAPI.newpapi_instance.list_incident_types()
// Get a list of incident types returns "OK" responsepackagemainimport("context""encoding/json""fmt""os""github.com/DataDog/datadog-api-client-go/v2/api/datadog""github.com/DataDog/datadog-api-client-go/v2/api/datadogV2")funcmain(){ctx:=datadog.NewDefaultContext(context.Background())configuration:=datadog.NewConfiguration()configuration.SetUnstableOperationEnabled("v2.ListIncidentTypes",true)apiClient:=datadog.NewAPIClient(configuration)api:=datadogV2.NewIncidentsApi(apiClient)resp,r,err:=api.ListIncidentTypes(ctx,*datadogV2.NewListIncidentTypesOptionalParameters())iferr!=nil{fmt.Fprintf(os.Stderr,"Error when calling `IncidentsApi.ListIncidentTypes`: %v\n",err)fmt.Fprintf(os.Stderr,"Full HTTP response: %v\n",r)}responseContent,_:=json.MarshalIndent(resp,""," ")fmt.Fprintf(os.Stdout,"Response from `IncidentsApi.ListIncidentTypes`:\n%s\n",responseContent)}
// Get a list of incident types returns "OK" responseimportcom.datadog.api.client.ApiClient;importcom.datadog.api.client.ApiException;importcom.datadog.api.client.v2.api.IncidentsApi;importcom.datadog.api.client.v2.model.IncidentTypeListResponse;publicclassExample{publicstaticvoidmain(String[]args){ApiClientdefaultClient=ApiClient.getDefaultApiClient();defaultClient.setUnstableOperationEnabled("v2.listIncidentTypes",true);IncidentsApiapiInstance=newIncidentsApi(defaultClient);try{IncidentTypeListResponseresult=apiInstance.listIncidentTypes();System.out.println(result);}catch(ApiExceptione){System.err.println("Exception when calling IncidentsApi#listIncidentTypes");System.err.println("Status code: "+e.getCode());System.err.println("Reason: "+e.getResponseBody());System.err.println("Response headers: "+e.getResponseHeaders());e.printStackTrace();}}}
// Get a list of incident types returns "OK" response
usedatadog_api_client::datadog;usedatadog_api_client::datadogV2::api_incidents::IncidentsAPI;usedatadog_api_client::datadogV2::api_incidents::ListIncidentTypesOptionalParams;#[tokio::main]asyncfnmain(){letmutconfiguration=datadog::Configuration::new();configuration.set_unstable_operation_enabled("v2.ListIncidentTypes",true);letapi=IncidentsAPI::with_config(configuration);letresp=api.list_incident_types(ListIncidentTypesOptionalParams::default()).await;ifletOk(value)=resp{println!("{:#?}",value);}else{println!("{:#?}",resp.unwrap_err());}}
DD_SITE="datadoghq.comus3.datadoghq.comus5.datadoghq.comdatadoghq.euap1.datadoghq.comap2.datadoghq.comddog-gov.comus2.ddog-gov.com"DD_API_KEY="<DD_API_KEY>"DD_APP_KEY="<DD_APP_KEY>"cargo run
/**
* Get a list of incident types returns "OK" response
*/import{client,v2}from"@datadog/datadog-api-client";constconfiguration=client.createConfiguration();configuration.unstableOperations["v2.listIncidentTypes"]=true;constapiInstance=newv2.IncidentsApi(configuration);apiInstance.listIncidentTypes().then((data: v2.IncidentTypeListResponse)=>{console.log("API called successfully. Returned data: "+JSON.stringify(data));}).catch((error: any)=>console.error(error));