get_incident | SELECT | incident_id, dd_site | Get the details of an incident by incident_id . |
list_incidents | SELECT | dd_site | Get all incidents for the user's organization. |
search_incidents | SELECT | query, dd_site | Search for incidents matching a certain query. |
create_incident | INSERT | data__data, dd_site | Create an incident. |
delete_incident | DELETE | incident_id, dd_site | Deletes an existing incident from the users organization. |
_get_incident | EXEC | incident_id, dd_site | Get the details of an incident by incident_id . |
_list_incidents | EXEC | dd_site | Get all incidents for the user's organization. |
_search_incidents | EXEC | query, dd_site | Search for incidents matching a certain query. |
update_incident | EXEC | incident_id, data__data, dd_site | Updates an incident. Provide only the attributes that should be updated as this request is a partial update. |