Configuring Data Mapping in Management API#
This article explains how to retrieve all tracked columns, retrieve details about specific columns, and assign target columns with the Management API.
Prerequisites#
Before you complete the procedure in this guide, perform all of the following actions:
Create a datastream and determine its datastream ID. For more information, see Creating datastreams.
Collect data from your datastream. For more information, see Collecting data through Management API.
Retrieving current Data Mapping#
Retrieving all tracked columns in an instance#
To retrieve all tracked columns, follow these steps:
Create a GET request to the following endpoint:
https://{{INSTANCE}}/api/columns/
In the HTTP request header, include the parameter
Authorization
with one of the following values:Token {{KEY}}
if you use a key generated with user credentials in Management API.Bearer {{KEY}}
if you use a key generated in the Adverity user interface.
Send the request.
Import the request example as raw text to your HTTP client (such as Postman). The cURL request example is the following:
curl --location -g --request GET 'https://{{INSTANCE}}/api/columns/' \
--header 'Authorization: Token {{KEY}}'
Retrieving all tracked columns in a datastream#
To retrieve all tracked columns per datastream, follow these steps:
Create a GET request to the following endpoint:
https://{{INSTANCE}}/api/datastreams/{{DATASTREAM_ID}}/columns/
In the HTTP request header, include the parameter
Authorization
with one of the following values:Token {{KEY}}
if you use a key generated with user credentials in Management API.Bearer {{KEY}}
if you use a key generated in the Adverity user interface.
Send the request.
Import the request example as raw text to your HTTP client (such as Postman). The cURL request example is the following:
curl --location -g --request GET 'https://{{INSTANCE}}/api/datastreams/{{DATASTREAM_ID}}/columns/' \
--header 'Authorization: Token {{KEY}}'
Retrieving details of a specific column#
To retrieve details of a specific column, follow these steps:
Create a GET request to the following endpoint:
https://{{INSTANCE}}/api/columns/{{COLUMN_ID}}
In the HTTP request header, include the parameter
Authorization
with one of the following values:Token {{KEY}}
if you use a key generated with user credentials in Management API.Bearer {{KEY}}
if you use a key generated in the Adverity user interface.
Send the request.
Import the request example as raw text to your HTTP client (such as Postman). The cURL request example is the following:
curl --location -g --request GET 'https://{{INSTANCE}}/api/columns/{{COLUMN_ID}}' \
--header 'Authorization: Token {{KEY}}'
Assigning target columns#
To assign columns you retrieved from the datastream to target columns, search through available target columns, create a new target column, and then assign the column to the target column. Sections below document this process.
Retrieving all available target columns#
To retrieve all available target columns in your instance, follow these steps:
Create a GET request to the following endpoint:
https://{{INSTANCE}}/api/target-columns/
In the HTTP request header, include the parameter
Authorization
with one of the following values:Token {{KEY}}
if you use a key generated with user credentials in Management API.Bearer {{KEY}}
if you use a key generated in the Adverity user interface.
Send the request.
Import the request example as raw text to your HTTP client (such as Postman). The cURL request example is the following:
curl --location -g --request GET 'https://{{INSTANCE}}/api/target-columns/' \
--header 'Authorization: Token {{KEY}}'
Searching through available target columns by name#
This section uses an example in which you search for the target column
called day
using the name
parameter. To search through the
available target columns using the name
parameter, follow these
steps:
Create a GET request to the following endpoint:
https://{{INSTANCE}}/api/target-columns/?stack_id={{STACK_ID}}&name=day
In the HTTP request header, include the parameter
Authorization
with one of the following values:Token {{KEY}}
if you use a key generated with user credentials in Management API.Bearer {{KEY}}
if you use a key generated in the Adverity user interface.
Send the request.
Import the request example as raw text to your HTTP client (such as Postman). The cURL request example is the following:
curl --location -g --request GET 'https://{{INSTANCE}}/api/target-columns/?stack_id={{STACK_ID}}&name=day' \
--header 'Authorization: Token {{KEY}}'
Retrieving available options for target column configuration#
To retrieve all available options for a new target column, including the optional parameters, follow the steps below:
Create an OPTIONS request to the following endpoint:
https://{{INSTANCE}}/api/target-columns/
In the HTTP request header, include the parameter
Authorization
with one of the following values:Token {{KEY}}
if you use a key generated with user credentials in Management API.Bearer {{KEY}}
if you use a key generated in the Adverity user interface.
Send the request.
Import the request example as raw text to your HTTP client (such as Postman). The cURL request example is the following:
curl --location -g --request OPTIONS 'https://{{INSTANCE}}/api/target-columns/' \
--header 'Authorization: Token {{KEY}}'
Creating a new target column#
If you could not find a target column matching the necessary configuration, create a new target column which you can later assign to a column retrieved from a datastream. To create a new target column, follow these steps:
Create a POST request to the following endpoint:
https://{{INSTANCE}}/api/target-columns/
In the HTTP request header, include the parameter
Authorization
with one of the following values:Token {{KEY}}
if you use a key generated with user credentials in Management API.Bearer {{KEY}}
if you use a key generated in the Adverity user interface.
In the HTTP request header, include the parameter
Content-Type
with valueapplication/json
.In the HTTP request body, include the following required parameters:
{ "type": "String", "name": "name", "stack": {{STACK_ID}}, "usage": "dimension" }
These are the required parameters. The value of the
usage
parameter is eitherdimension
ormetric
.Send the request.
Import the request example as raw text to your HTTP client (such as Postman). The cURL request example is the following:
curl --location -g --request POST 'https://{{INSTANCE}}/api/target-columns/' \
--header 'Authorization: Token {{KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "String",
"name": "name",
"stack": {{STACK_ID}},
"usage": "dimension"
}'
Viewing a target column mapping#
To view the list of source columns assigned to a target column, follow the steps below:
Create a GET request to the following endpoint:
https://{{INSTANCE}}/api/target-columns/{{TARGET_COLUMN_ID}}/mappings/
In the HTTP request header, include the parameter
Authorization
with one of the following values:Token {{KEY}}
if you use a key generated with user credentials in Management API.Bearer {{KEY}}
if you use a key generated in the Adverity user interface.
In the HTTP request header, include the parameter
Content-Type
with valueapplication/json
.Send the request.
Import the request example as raw text to your HTTP client (such as Postman). The cURL request example is the following:
curl --location -g --request GET 'https://{{INSTANCE}}/api/target-columns/{{TARGET_COLUMN_ID}}/mappings/' \
--header 'Authorization: Token {{KEY}}' \
--header 'Content-Type: application/json'
Updating column mapping#
In this section, you assign a column to a target column, or in other words, you configure the Data Mapping.
To update column mapping, follow these steps:
Create a PATCH request to the following endpoint:
https://{{INSTANCE}}/api/datastreams/{{DATASTREAM_ID}}/columns/{{COLUMN_ID}}/
In the HTTP request header, include the parameter
Authorization
with one of the following values:Token {{KEY}}
if you use a key generated with user credentials in Management API.Bearer {{KEY}}
if you use a key generated in the Adverity user interface.
In the HTTP request header, include the parameter
Content-Type
with valueapplication/json
.In the HTTP request body, include the following required parameters:
{ "is_key_column":"false", "set_default": "false", "target_column": {"id": {{TARGET_COLUMN_ID}}} }
Send the request.
Import the request example as raw text to your HTTP client (such as Postman). The cURL request example is the following:
curl --location -g --request PATCH 'https://{{INSTANCE}}/api/datastreams/{{DATASTREAM_ID}}/columns/{{COLUMN_ID}}/' \
--header 'Authorization: Token {{KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"is_key_column":"false",
"set_default": "false",
"target_column": {"id": {{TARGET_COLUMN_ID}}}
}'