post https://{account}.piwik.pro/api/analytics/v1/manage/custom-dimensions/
Configure new custom dimension.
Log in to see full request history
time | status | user agent | |
---|---|---|---|
Retrieving recent requests… |
Loading…
Responses
400Bad Request
403Forbidden
Configure new custom dimension.
time | status | user agent | |
---|---|---|---|
Retrieving recent requests… |
400Bad Request
403Forbidden
xxxxxxxxxx
16curl --request POST \
--url https://example.piwik.pro/api/analytics/v1/manage/custom-dimensions/ \
--header 'accept: application/vnd.api+json' \
--header 'content-type: application/vnd.api+json' \
--data '
{
"data": {
"type": "CustomDimension",
"attributes": {
"active": true,
"case_sensitive": true,
"scope": "session"
}
}
}
'
xxxxxxxxxx
21{
"data": {
"type": "CustomDimension",
"id": "677fe0d3-b4f7-43ed-852d-1a9e7b8e59fb",
"attributes": {
"website_id": "dde2dc68-b6bb-45ee-9ac2-868b6181e33f",
"name": "Visitor hair color",
"active": true,
"case_sensitive": true,
"tracking_id": 0,
"extractions": [
{
"target": "page_title_regex",
"pattern": "/foo/(.*)/bar"
}
],
"scope": "session",
"slot": 0
}
}
}