Versions Compared

Key

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

...

idData Set identifier. You can find the ID in the response to /api/dataSets.123
codeAttribute code. You can find the code in the response to /api/dataSets/:id.L_STATE
data

Form contents to submit in following JSON format:

name(Mandatory) name of the subset
subsetValues

An array of subset values. Each subset value has the following definition:

member/customMemberIdThe name of a member or the ID of a custom member
negativeValue(Optional) Boolean parameter defining if a negative value should be used when calculating the value of the parent in a nested subset.
drillDownDisabled(Optional) Boolean parameter defining if the drill-down functionality is enabled or disabled in a nested subset.
children

(Optional) An array of subset values which are children of this subset value




Code Block
{"name":"Subset 1"}


Code Block
{"name":"R1",
"subsetValues":[{"member":"test", "children":[
{"member":"Virginia", "negativeValue":"true", drillDownDisabled:"true"}
, {"member":"Texas"}]},{"member":"Coffee"},{"customMemberId":"jjLxqv2nKt" }]
}


Response Structure

JSON response contains one JSON object with the following element:

...