Skip to content
This repository was archived by the owner on Jan 12, 2021. It is now read-only.

Latest commit

 

History

History
56 lines (37 loc) · 1.54 KB

File metadata and controls

56 lines (37 loc) · 1.54 KB

AttributionApi

All URIs are relative to http://localhost/

Method HTTP request Description
show GET api/v2/alerts/{alert_id}/attribution.json_api Show the attribution for an alert

show

Attribution show(alertId, include)

Show the attribution for an alert

Example

// Import classes:
//import io.evident.EspSdk.ApiException;
//import io.evident.api.AttributionApi;


AttributionApi apiInstance = new AttributionApi();
Integer alertId = 56; // Integer | The ID of the alert to retrieve user attribution for
String include = "include_example"; // String | Related objects that can be included in the response:  alert See Including Objects for more information.
try {
    Attribution result = apiInstance.show(alertId, include);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling AttributionApi#show");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
alertId Integer The ID of the alert to retrieve user attribution for
include String Related objects that can be included in the response: alert See Including Objects for more information. [optional]

Return type

Attribution

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/vnd.api+json
  • Accept: application/vnd.api+json