Skip to content
All updates

Changelog

Product update of the week: Week 49

The Truto Team The Truto Team ·

Improvement

  • Added support for key-ing the responses based on attributes in the Unified API. Use truto_key_by query parameter to specify the attribute to key by.

Currently the responses for all our Unified APIs is in the following format,

    {
      "result": [
        {
          "id": "foo",
          "name": "bar"
        },
        {
          "id": "foo2",
          "name": "bar2"
        }
      ],
      "next_cursor": "foo3"
    }

With truto_key_by=id, the response will be like so,

    {
      "result": {
        "foo": {
          "id": "foo",
          "name": "bar"
        },
        "foo2": {
          "id": "foo2",
          "name": "bar2"
        }
      },
      "next_cursor": "foo3"
    }

Works in RapidBridge Sync Jobs as well.

  • Confluence integration now supports Webhooks and is in beta. Reach out to your Truto account manager to enable it.