Uid of dimension
DELETE /v1/Dimensions HTTP/1.1 Host: Authorization: YOUR_API_KEY Accept: */*
OK
No content
Representation of a dimension to be used to segment attribute value data
GET /v1/Dimensions/{uid} HTTP/1.1 Host: Authorization: YOUR_API_KEY Accept: */*
{ "Uid": "123e4567-e89b-12d3-a456-426614174000", "Alias": "text", "Segments": [ { "Uid": "123e4567-e89b-12d3-a456-426614174000", "Identifier": "text", "Name": "text" } ] }
GET /v1/Dimensions HTTP/1.1 Host: Authorization: YOUR_API_KEY Accept: */*
[ { "Uid": "123e4567-e89b-12d3-a456-426614174000", "Alias": "text", "Segments": [ { "Uid": "123e4567-e89b-12d3-a456-426614174000", "Identifier": "text", "Name": "text" } ] } ]
Unique id of dimension
Unique alias of dimension
Segments available to this dimension
POST /v1/Dimensions HTTP/1.1 Host: Authorization: YOUR_API_KEY Content-Type: application/json-patch+json Accept: */* Content-Length: 155 { "Uid": "123e4567-e89b-12d3-a456-426614174000", "Alias": "text", "Segments": [ { "Uid": "123e4567-e89b-12d3-a456-426614174000", "Identifier": "text", "Name": "text" } ] }
PUT /v1/Dimensions HTTP/1.1 Host: Authorization: YOUR_API_KEY Content-Type: application/json-patch+json Accept: */* Content-Length: 155 { "Uid": "123e4567-e89b-12d3-a456-426614174000", "Alias": "text", "Segments": [ { "Uid": "123e4567-e89b-12d3-a456-426614174000", "Identifier": "text", "Name": "text" } ] }