Note: This endpoint is in preview and is subject to change.
If you have any feedback, contact Datadog support.
POST https://api.ap1.datadoghq.com/api/v2/incidents/config/google-meet-configurationshttps://api.ap2.datadoghq.com/api/v2/incidents/config/google-meet-configurationshttps://api.datadoghq.eu/api/v2/incidents/config/google-meet-configurationshttps://api.ddog-gov.com/api/v2/incidents/config/google-meet-configurationshttps://api.us2.ddog-gov.com/api/v2/incidents/config/google-meet-configurationshttps://api.uk1.datadoghq.com/api/v2/incidents/config/google-meet-configurationshttps://api.datadoghq.com/api/v2/incidents/config/google-meet-configurationshttps://api.us3.datadoghq.com/api/v2/incidents/config/google-meet-configurationshttps://api.us5.datadoghq.com/api/v2/incidents/config/google-meet-configurations
Overview
Create a Google Meet configuration for incidents.
This endpoint requires the incident_settings_write permission.
OAuth apps require the incident_settings_write authorization scope to access this endpoint.
Request
Body Data (required)
Google Meet configuration payload.
Expand All
Google Meet configuration data in a create request.
Attributes for creating a Google Meet configuration.
allow_manual_meeting_creation [required]
Whether to allow manual meeting creation.
auto_summarize [required]
Whether to auto-summarize meetings.
Relationships for a Google Meet configuration create request.
Relationship to an incident type.
Relationship to incident type object.
Incident type resource type.
Allowed enum values: incident_types
default: incident_types
Google Meet configuration resource type.
Allowed enum values: google_meet_configurations
{
"data": {
"attributes": {
"allow_manual_meeting_creation": true,
"auto_summarize": false
},
"relationships": {
"incident_type": {
"data": {
"id": "00000000-0000-0000-0000-000000000000",
"type": "incident_types"
}
}
},
"type": "google_meet_configurations"
}
}
Response
Created
Response with a Google Meet configuration.
Expand All
Google Meet configuration data in a response.
Attributes of a Google Meet configuration.
allow_manual_meeting_creation [required]
Whether manual meeting creation is allowed.
auto_summarize [required]
Whether meetings are auto-summarized.
Timestamp when the configuration was created.
Timestamp when the configuration was last modified.
The configuration identifier.
Relationships for a Google Meet configuration.
Relationship to user object.
A unique identifier that represents the user.
Users resource type.
Allowed enum values: users
default: users
Relationship to an incident type.
Relationship to incident type object.
Incident type resource type.
Allowed enum values: incident_types
default: incident_types
Relationship to user object.
A unique identifier that represents the user.
Users resource type.
Allowed enum values: users
default: users
Google Meet configuration resource type.
Allowed enum values: google_meet_configurations
Included related resources.
Attributes of user object returned by the API.
Users resource type.
Allowed enum values: users
default: users
{
"data": {
"attributes": {
"allow_manual_meeting_creation": true,
"auto_summarize": false,
"created_at": "2024-01-01T00:00:00.000Z",
"modified_at": "2024-01-01T00:00:00.000Z"
},
"id": "00000000-0000-0000-0000-000000000000",
"relationships": {
"created_by_user": {
"data": {
"id": "00000000-0000-0000-2345-000000000000",
"type": "users"
}
},
"incident_type": {
"data": {
"id": "00000000-0000-0000-0000-000000000000",
"type": "incident_types"
}
},
"last_modified_by_user": {
"data": {
"id": "00000000-0000-0000-2345-000000000000",
"type": "users"
}
}
},
"type": "google_meet_configurations"
},
"included": [
{
"attributes": {
"email": "string",
"handle": "string",
"icon": "string",
"name": "string",
"uuid": "string"
},
"id": "string",
"type": "users"
}
]
}
Bad Request
{
"errors": [
"Bad Request"
]
}
Unauthorized
{
"errors": [
"Bad Request"
]
}
Forbidden
{
"errors": [
"Bad Request"
]
}
Too many requests
{
"errors": [
"Bad Request"
]
}
Code Example
## default
#
# Curl command
curl -X POST "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.us2.ddog-gov.com"https://api.uk1.datadoghq.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/v2/incidents/config/google-meet-configurations" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "DD-API-KEY: ${DD_API_KEY}" \
-H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \
-d @- << EOF
{
"data": {
"attributes": {
"allow_manual_meeting_creation": true,
"auto_summarize": false
},
"relationships": {
"incident_type": {
"data": {
"id": "00000000-0000-0000-0000-000000000000",
"type": "incident_types"
}
}
},
"type": "google_meet_configurations"
}
}
EOF