v1
latestOpenAPI 3.0.02026-07-142351,1971.3 MBDashboards
Send shared dashboard invitation email
Send emails to specified email addresses containing links to access a given authenticated shared dashboard. Email addresses must already belong to the authenticated shared dashboard's share_list.
post/api/v1/dashboard/public/{token}/invitation
Path parameters
tokenstring required
The token of the shared dashboard.
Request body
Example request
{
"data": [
{
"attributes": {
"email": "test@datadoghq.com"
},
"type": "public_dashboard_invitation"
}
]
}Response
OK
Example response
{
"data": [
{
"attributes": {
"email": "test@datadoghq.com"
},
"type": "public_dashboard_invitation"
}
]
}