Experiment Tag GET
GEThttps://sandbox.absmartly.com/v1/experiment_tags/:experimentTagId
Required Permissions: Experiment Get
or Experiment Admin
Request
Path Parameters
experimentTagId integerrequired
The id of the Experiment Tag that you wish to get data from.
Responses
- 200
A JSON Object containing an experiment tag's data.
- application/json
- Schema
- Example (from schema)
Schema
experiment_tag object
{
"experiment_tag": {
"id": 0,
"tag": "stack:backend",
"created_at": "2025-06-18T16:08:32.425Z",
"created_by": {
"archived": false,
"avatar": {},
"avatar_file_upload_url": "/cropUrl/100x100/1.png",
"created_at": "2025-06-18T16:08:32.425Z",
"created_by_user_id": 0,
"department": "Marketing",
"email": "[email protected]"
},
"created_by_user_id": 0,
"updated_at": "2025-06-18T16:08:32.425Z",
"updated_by": {
"archived": false,
"avatar": {},
"avatar_file_upload_url": "/cropUrl/100x100/1.png",
"created_at": "2025-06-18T16:08:32.425Z",
"created_by_user_id": 0,
"department": "Marketing",
"email": "[email protected]"
},
"updated_by_user_id": 0,
"experiments": [
null
]
}
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: A User API Key for API authorization. **Must be in the format "Api-Key your_user_api_key"**scheme: ^Api-Key\s\S+
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://sandbox.absmartly.com/v1/experiment_tags/:experimentTagId' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
ResponseClear