Skip to content

Instantly share code, notes, and snippets.

@fernandocamargo
Last active May 27, 2022 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernandocamargo/6a500d242158dd863a7995b9385b4bc4 to your computer and use it in GitHub Desktop.
Save fernandocamargo/6a500d242158dd863a7995b9385b4bc4 to your computer and use it in GitHub Desktop.
Report builder - request/response sample

Request

{
  "columns": [
    {
      "type": "month",
      "values": ["01", "02", "03", "04", "05"]
    },
    "itemtype"
  ],
  "rows": [
    {
      "type": "cc_level1",
      "values": ["CEO"]
    },
    "transaction_value"
  ]
}

Response

{
  "columns": [
    {
      "content": "01",
      "type": "month",
      "details": [
        {
          "content": "Actual",
          "type": "itemtype"
        }
      ]
    },
    {
      "content": "02",
      "type": "month",
      "details": [
        {
          "content": "Actual",
          "type": "itemtype"
        }
      ]
    },
    {
      "content": "03",
      "type": "month",
      "details": [
        {
          "content": "Actual",
          "type": "itemtype"
        }
      ]
    },
    {
      "content": "04",
      "type": "month",
      "details": [
        {
          "content": "Actual",
          "type": "itemtype"
        }
      ]
    },
    {
      "content": "05",
      "type": "month",
      "details": [
        {
          "content": "Actual",
          "type": "itemtype"
        }
      ]
    }
  ],
  "rows": [
    {
      "content": "CEO",
      "type": "cc_level1",
      "value": [
        {
          "content": "-195,142.89",
          "type": "month"
        },
        {
          "content": "-131,657.91",
          "type": "month"
        },
        {
          "content": "-365,867.57",
          "type": "month"
        },
        {
          "content": "-103,075.82",
          "type": "month"
        },
        {
          "content": "-591,068.53",
          "type": "month"
        }
      ]
    }
  ]
}

Screenshots

image (2) image (1) image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment