Retrieving data list

Retrieve the reference data list.

Procedure

  1. In a REST client platform, add the authentication details of the tenant from where you want to get the reference data list.
    
    //In case of Instance API key 
    Headers:
    {
    "x-instance-api-key": "instance_api_key"
    }
     
    // In case of MCSP or ISV token
    Headers:
    {
    "Authorization": "mcsp_or_isv_token"
    }
  2. Make a GET request at the URL of the project.

    URL Syntax: <domain>/apis/v1/rest/projects/<project_name>/referencedata

    In this URL request, <project_name> is the name or UID of the project from where you want to get the data list.

    Method: GET

    If the request is successful, you receive the response code for success.

    {
        "output": [
            {
               "name": "<name>",
               "description": "<description>",
               "columnDelimiter": "<columnDelimiter>",
               "releaseCharacter": "<releaseCharacter>",
               "columnNames": [<columnNames>],
               "dataRecords": [<dataRecords>],
               "revisionData": [<revisionData>],
               "encodingType": "<encodingType>",
               "version": "<version>"
            },
            .
            .
        ]
    }