Retrieve a Single Activity
Returns a single activity object with a specific numeric ID. Every response contains two extra keys, one called trackable, that contains data about the changed object and the other called user that contains the user information.
https://mapi.storyblok.com/v1/spaces/:space_id/activities/:activity_id
Path Parameters
-
:space_id
required numberNumeric ID of a space
-
:activity_id
required numberNumeric activity id
Response Properties
-
activity
The Activity ObjectThe Activity Object
-
id
numberThe numeric ID of the activity
-
trackable_id
numberId of reference object that was changed
-
trackable_type
objectType of the referenced object
-
owner_id
numberID of the user that changed made the activity
-
owner_type
stringDefault: "User"
-
key
objectKey defined by type.action (eg: story.create, story.update, component.create)
-
parameters
objectAdditional parameter passed; Default: null
-
recipient_id
numberDefault: null
-
recipient_type
stringDefault: null
-
created_at
stringCreation date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
) -
updated_at
stringLatest update date (Format:
yyyy-MM-dd'T'HH:mm:ssZ
) -
space_id
numberNumeric ID of a space
-
-
trackable
objectObject containing details about the changed object
The trackable object contains more information while retrieving a single activity
-
user
objectThe user object
-
id
numberThe numeric user ID
-
userid
stringUser ID of collaborator
-
friendly_name
stringFriendly name of collaborator
-
active
booleanTrue if the user is active
-
Example Request
curl "https://mapi.storyblok.com/v1/spaces/606/activities/1234312323" \
-X GET \
-H "Authorization: YOUR_OAUTH_TOKEN" \
-H "Content-Type: application/json"
// Using the Universal JavaScript Client:
// https://github.com/storyblok/storyblok-js-client
Storyblok.get('/spaces/606/activities/1234312323', {})
.then(response => {
console.log(response)
}).catch(error => {
console.log(error)
})
$client = new \Storyblok\ManagementClient('YOUR_OAUTH_TOKEN');
$client->get('/spaces/606/activities/1234312323')->getBody();
require 'storyblok'
client = Storyblok::Client.new(oauth_token: 'YOUR_OAUTH_TOKEN')
client.false('/spaces/606/activities/1234312323')
HttpResponse<String> response = Unirest.get("https://mapi.storyblok.com/v1/spaces/606/activities/1234312323")
.header("Authorization", "YOUR_OAUTH_TOKEN")
.asString();
var client = new RestClient("https://mapi.storyblok.com/v1/spaces/606/activities/1234312323");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "YOUR_OAUTH_TOKEN");
IRestResponse response = client.Execute(request);
import Foundation
let headers = [
"Content-Type": "application/json",
"Authorization": "YOUR_OAUTH_TOKEN"
]
let request = NSMutableURLRequest(url: NSURL(string: "https://mapi.storyblok.com/v1/spaces/606/activities/1234312323")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0)
request.method = "GET"
request.allHTTPHeaderFields = headers
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
import requests
url = "https://mapi.storyblok.com/v1/spaces/606/activities/1234312323"
querystring = {}
payload = ""
headers = {
'Content-Type': "application/json",
'Authorization': "YOUR_OAUTH_TOKEN"
}
response = requests.request("GET", url, data=payload, headers=headers, params=querystring)
print(response.text)
{
"activity": {
"id": 1234312323,
"trackable_id": 162372,
"trackable_type": "Comment",
"owner_id": 123123,
"owner_type": "User",
"key": "comment.create",
"parameters": "{}",
"recipient_id": null,
"recipient_type": null,
"created_at": "2024-05-22T11:12:52.510Z",
"updated_at": "2024-05-22T11:12:52.510Z",
"space_id": 123431
},
"trackable": {},
"user": {
"id": 123123,
"userid": "chakit",
"friendly_name": "Chakit Arora",
"active": true
}
}