Using Dashboard API to Manage Boost and Bury Rules

Boost & Bury

  • GET api/v9/boostbury

    Gets all boost and bury rules in the system

  • GET api/v9/boostbury/{id}

    Gets a single rule by its id

    Parameters

    • id: Id of a rule (FromUri)

  • GET api/v9/boostbury/{guid}

    Gets a single rule by its guid

    Parameters

    • guid: Id of a rule (FromUri)

  • POST api/v9/boostbury

    Adds a rule to the system

    Parameters

    • rule: A rule entity (FromBody)

  • PUT api/v9/boostbury/{id}

    Updates a rule

    Parameters

    • id: Id of a rule to update (FromUri)

    • rule: A rule entity with updated properties (FromBody)

  • PUT api/v9/boostbury/{guid}

    Updates a rule

    Parameters

    • guid: Id of a rule to update (FromUri)

    • rule: A rule entity with updated properties (FromBody)

  • DELETE api/v9/boostbury/{id}

    Deletes a rule

    Parameters

    • id: Id of a rule to delete (FromUri)

  • DELETE api/v9/boostbury/{guid}

    Deletes a rule

    Parameters

    • guid: Id of a rule to delete (FromUri)