Forum Discussion

Josh_Selinger's avatar
7 years ago

##EXTERNALTICKETID## in Alert API

Please add Custom Variable ##EXTERNALTICKETID## the rpc/getALerts api data.

thanks

 

9 Replies

  • Sarah_Terry's avatar
    Sarah_Terry
    Icon for Product Manager rankProduct Manager

    Hi Josh,

    We aren't adding any new features to our RPC API as it was deprecated at the end of last year, but you can get custom column information with our REST API alerts resource.  Compared to our RPC API, our REST API is more comprehensive in coverage, more secure, and provides a lot more consistency- so we recommend you give it a try! 

    Thanks!

    Sarah

  • Is ##EXTERNALTICKETID## available in the REST API in the payload for an Alert?

  • Sarah_Terry's avatar
    Sarah_Terry
    Icon for Product Manager rankProduct Manager

    If you have ##externalticketid## added as a custom column, it will be available in the REST API response for the alerts resource. 

  • On 6/24/2017 at 5:43 AM, Sarah Terry said:

    externalticketid

    I am not able to get this in GET response for santaba/rest/alert/alerts?sort=-startEpoch for ####EXTERNALTICKETID##.

  • Anonymous's avatar
    Anonymous
    On 6/1/2017 at 6:14 PM, Sarah Terry said:

    The link to the current documentation for this resource is: https://www.logicmonitor.com/swagger-ui-master/dist/#/Alerts/getAlertList.

    @Sarah Terry, I added EXTERNALTICKETID as a custom column, removed the threshold from an instance (to clear existing alarms), let the alarm clear, then reset the threshold to open a new alarm. That alarm doesn't have a value for externalticketid, but the field also doesn't show up in the response from v2 of the API on /alert/alerts. Does it have to have a value in order to show up?

  • Sarah_Terry's avatar
    Sarah_Terry
    Icon for Product Manager rankProduct Manager

    So you have to specify the externalTicketId custom column in the API request, like this:

    GET /alert/alerts?customColumns=%2523%2523externalticketid%2523%2523

     

  • Anonymous's avatar
    Anonymous

    I tested this and it does work in v1 API calls. I couldn't get it to work in v2 API calls.

  • The API call worked great for me, but is there any way to filter on alerts that contain data in the externalticketid column? I attempted to mimic the custom properties filtering examples, but it didn't seem to work. Thanks!

    GET /alert/alerts?filter=customColumns.name:%2523%2523externalticketid%2523%2523,customColumns.data!-"no data"&customColumns=%2523%2523externalticketid%2523%2523
  • Whoops, I had a mistake in there, i should've put .value, not .data in my previous post. For posterity, I also attempted the filter with both the URL format text & plain text in double quotes (in the example below), but I get an empty customColumns returned when the filter is before the customColumns (example 1). Conversely, I DO get data when I specify the customColumn before the filter, however the filter doesn't seem to apply (example 2).

    Example 1:

    GET /alert/alerts?filter=customColumns.name:"##externalticketid##",customColumns.value!-"no data"&customColumns=%2523%2523externalticketid%2523%2523

    Example 2:

    GET /alert/alerts?customColumns=%2523%2523externalticketid%2523%2523&filter=customColumns.name:"##externalticketid##",customColumns.value!-"no data"

     

    Thank you!

    -Ryan