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

Session IDs

Session IDs

Each
Reference 360
REST API request must be authenticated. To authenticate your requests, you must get a session ID, and then add the session ID to the header of every request. The
Informatica Intelligent Cloud Services
(IICS) Identity Service issues the session ID.
If your session ID expires, log in again to get a new session ID.
To get a session ID, submit the following POST request with your credentials:
POST https://dm-us.informaticacloud.com/identity-service/api/v1/Login { "username": "myUser", "password": "myPassword", }
The response returns a
sessionId
. For example, you might receive the following response:
{ ... "sessionId": "XXXXXXXXXXXXXXXXXXXXXX", "sessionExpireTime": "2000-01-01T00:00:00.000Z", ... }
To authenticate your requests, add
IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX
in the request header.
The following example shows how
IDS-SESSION-ID
is used in the request header:
POST https://use4-mdm.dm-us.informaticacloud.com/rdm-service/external/v1/model/export HTTP/1.1 Content-Type: application/json Accept: application/json IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX { "referenceDataSetIds":[ "56dbde1afe4d8257b6d7735e", "a83fa4bda81df711caca4e71" ] }

1 COMMENTS

We’d like to hear from you!
Jake Pham - July 06, 2023

How long will a Session ID last before it expires?

Informatica Documentation Team - July 07, 2023

Hi Jake,

We have a known limitation because of which a session ID doesn't timeout for Reference 360. We will be adding this issue as a known limitation in Release Notes.

Thanks,
Informatica Documentation Team


Informatica Documentation Team - July 12, 2023

Hi Jake,

You can find this known limitation documented in Reference 360 SaaS Release Notes.

We’re happy to let you know that we addressed your feedback in the documentation.

Thanks,

Informatica Documentation team