Hi, as this is a help forum (and not client care), we don't have access to your suite or data, so you are going to have to help us help you.
In you suite what are the items you mentioned:
- Area (User)
- Sub area (User)
- Service Line (User)
- Sub Service Line (User)
- Rank (User)
I am going to assume that "Country (User)" would be your standard geo country, and of course your standard Experience Cloud Visitor ID.
However, I ran a similar "Get Elements" API call on my own suite, I found all my props and eVars, my GeoCountry, and the marketingcloudvisitorid.... so I don't know why you aren't finding what you are looking for, but understanding what the elements are will help you find them.....
But the "Get Elements" call is a simple call just to return a list of available dimensions in the suite, it doesn't actually return values like the Data Warehouse..... So if the expectation is that using this call is going to get you a full data export, that is the incorrect usage.
To do that, in API 1.4, you need to run multiple calls:
1. You need to run a Report.Queue (this is where you will build out what data and metrics, in what time frame, etc you want to be returned in the report. - this will return a report id
2. You then need to keep checking the Report.GetQueue to wait for the status of the above report id to show that it's completed
3. Then once completed, you need run the Report.Get for the above report id to get back the data.
The API 2.0 is much faster, there is no need to check a Queue for completion, but you also can't pull in as many correlations at once... complex reports may need to make several calls to get back all the data.
The Workspace area uses API 2.0, you can see all the API calls used to build a report by enabling the "debug" mode (help > enable debugger). This will add a new "bug" icon on your visualizations, that when clicked will show by timestamp all the API calls that were made to build the report. You can click on each one to open up a page that will show you the API calls in multiple formats that you can copy and use for your own API implementation.