Experiment Annotation GET
GEThttps://sandbox.absmartly.com/v1/experiment_annotations/:experimentAnnotationId
Required Permissions: Annotation Get
or Annotation Admin
Request
Path Parameters
experimentAnnotationId integerrequired
The id of the Experiment Annotation that you wish to get data from.
Responses
- 200
A JSON Object containing an experiment annotation's data.
- application/json
- Schema
- Example (from schema)
Schema
experiment_annotation object
{
"experiment_annotation": {
"id": 0,
"timestamp": "2025-07-07T10:04:10.683Z",
"description": "This was just after a successful marketing campaign",
"color": "#CFC8FF",
"experiment_id": 0,
"created_at": "2025-07-07T10:04:10.683Z",
"created_by_user_id": 0,
"updated_at": "2025-07-07T10:04:10.683Z",
"updated_by_user_id": 0,
"created_by": {
"archived": false,
"avatar": {},
"avatar_file_upload_url": "/cropUrl/100x100/1.png",
"created_at": "2025-07-07T10:04:10.683Z",
"created_by_user_id": 0,
"department": "Marketing",
"email": "[email protected]"
},
"updated_by": {
"archived": false,
"avatar": {},
"avatar_file_upload_url": "/cropUrl/100x100/1.png",
"created_at": "2025-07-07T10:04:10.683Z",
"created_by_user_id": 0,
"department": "Marketing",
"email": "[email protected]"
}
}
}
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_annotations/:experimentAnnotationId' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
ResponseClear