Table of Contents

Search

  1. Preface
  2. Introducing Reference 360
  3. Getting started with Reference 360
  4. Manage system reference data
  5. Manage reference data sets
  6. Manage code lists
  7. Manage code values
  8. Manage crosswalks
  9. Import data
  10. Manage hierarchies
  11. Manage attributes
  12. Manage workflows
  13. Manage jobs
  14. Reference 360 REST API
  15. Glossary

Reference 360

Reference 360

Step 1. Get hierarchies

Step 1. Get hierarchies

You can retrieve all hierarchies in
Reference 360
.
Before you begin, you must get a session ID. The session ID authenticates your requests. For more information, see Session IDs.
  1. To retrieve all hierarchies, use the List hierarchies REST API.
    For more information about the List hierarchies REST API, see Get hierarchies.
    For example, the following request retrieves all hierarchies:
    GET https://use4-mdm.dm-us.informaticacloud.com/rdm-service/external/v1/hierarchies HTTP/1.1 Accept: application/json IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX
    For example, the List hierarchies REST API returns the following hierarchies:
    HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: 452 IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX [ { "id":"6e7dd28fc13b417c5c19d1fb", "name":"Cost centers", "description":"Cost center hierarchy", "version":"v1", "domain":"International standards", "confidentiality":"private", "priority":"Prio1", "status":"Draft", "effectiveDate":"2017-04-01", "approvedOn":"2017-03-01" }, { "id":"e3e57e39ea8623f258013c43", "name":"Profit centers", "description":"Profit center hierarchy", "version":"v1" } ]
    The
    id
    attribute is the ID of the hierarchy, which you require for other hierarchy REST APIs.
  2. Optionally, to retrieve the details of a hierarchy, use the List hierarchy details REST API.
    For more information about the List hierarchy details REST API, see Get hierarchy details.
    For example, the following request retrieves the details of a hierarchy:
    GET https://use4-mdm.dm-us.informaticacloud.com/rdm-service/external/v1/hierarchies/6e7dd28fc13b417c5c19d1fb HTTP/1.1 Accept: application/json IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX
    For example, the List hierarchy details REST API returns the following hierarchy details:
    HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: 334 { "id":"6e7dd28fc13b417c5c19d1fb", "name":"Cost centers", "description":"Cost center hierarchy", "version":"v1", "application":"App1", "domain":"Internal standards", "confidentiality":"private", "priority":"Prio1", "status":"Draft", "effectiveDate":"2017-04-01", "approvedOn":"2020-03-01" }

0 COMMENTS

We’d like to hear from you!