Versions Compared

Key

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

...

  1. Location Details with Hierarchical Org Structure in Breadcrumb/Flat Format :

Code Block
languagejson
{
    "Level:     : "By Geography/By Country",
    "LocationId": "1234",
    "LocationCode": "Test",
    "LocationName": "Test",
    "Address": "Test",
    "City": "Test",
    "State": "Test",
    "Country": "Test",
    "Zip": "765432"    
    
}

2. Location Details with Hierarchical Org Structure : [@RootNode Name - Mandatory]

Code Block
languagejson
{
  "Levels": [
    [
       
      "By Division",
      "Sub Level 1",
      "Sub Level 2"
    ],
    [
      "By Geography",
      "Sub Level 11"
    ],
    [
      "By Distribution",
      "Sub Level 21",
      "Sub Level 22",
      "Sub Level 23",
      "Sub Level 24"
    ]
  ],
  "Details": {
    "LocationId"  :"1234",
    "LocationCode": "Test",
    "LocationName": "Test",
    "Address": "Test",
    "City": "Test",
    "State": "Test",
    "Country": "Test",
    "Zip": "765432"
  }
"Levels": [
    [
       
      "By Division",
      "Sub Level 1",
      "Sub Level 2"
    ],
    [
      "By Geography",
      "Sub Level 11"
    ],
    [
      "By Distribution",
      "Sub Level 21",
      "Sub Level 22",
      "Sub Level 23",
      "Sub Level 24"
    ]
  ],
  "Details": {
    "LocationId"  :"1234",
    "LocationCode": "Test",
    "LocationName": "Test",
    "Address": "Test",
    "City": "Test",
    "State": "Test",
    "Country": "Test",
    "Zip": "765432"
  }
}

...