Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Endpoint: https://api.hootinteractive.net/cli_api/feed/queue/<feed_request_id>

  • Security: HTTPS Basic Auth

    • User: <client_id>

    • Pass: <token>

  • Allowed Calls:

    • GET: Obtains status of the client feed request.

    • DELETE: Deletes the feed request:

    • POST: Creates a feed request:

      • Params:

        • feed(required): Feed type. Here are the currently supported feed types:

          • 'sold': All vehicles that were removed from the inventory on a given day.

          • 'inventory': All Inventory data from a given day.

          • 'adversion': Currently active Video Ad Versions.

        • date(optional): If it is not present it defaults to the last day with data for each advertiser. If set to today, it will return an empty file(the first date with data is yesterday).

      • Responses:

        • 500 + Error message in case of error

        • 404 If feed type is not supported

        • 200 OK

      • Request Body example:

        Code Block
        {
          "feed": "sold",
          "date": "2021-12-28"
        }

...