Managing Boost and Bury Rules

📘

API Docs

Detailed technical documentation is available here - Boost and Bury API Documentation

GET api/v11/boostbury

  • Gets all boost and bury rules in the system

GET api/v11/boostbury/{id}

  • Gets a single rule by its id
  • Parameters
    • id: Id of a rule (FromUri)

GET api/v11/boostbury/{guid}

  • Gets a single rule by its guid
  • Parameters
    • guid: Id of a rule (FromUri)

POST api/v11/boostbury

  • Adds a rule to the system
    • Parameters
    • rule: A rule entity (FromBody)

PUT api/v11/boostbury/{id}

  • Updates a rule
  • Parameters
    • id: Id of a rule to update (FromUri)
    • rule: A rule entity with updated properties (FromBody)

PUT api/v11/boostbury/{guid}

  • Updates a rule
  • Parameters
    • guid: Id of a rule to update (FromUri)
    • rule: A rule entity with updated properties (FromBody)

DELETE api/v11/boostbury/{id}

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

DELETE api/v11/boostbury/{guid}

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