List Activity
GET
/admin/content-creators/{id}/activity
const url = 'http://localhost:9000/admin/content-creators/example/activity?limit=20&offset=0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:9000/admin/content-creators/example/activity?limit=20&offset=0'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
order
string
fields
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
activity
Array<object>
object
id
string
type
string
user_id
string
note
string
metadata
object
key
additional properties
any
created_at
string format: date-time
updated_at
string format: date-time
user
object
count
integer
limit
integer
offset
integer
Example generated
{ "activity": [ { "id": "example", "type": "example", "user_id": "example", "note": "example", "metadata": {}, "created_at": "2026-04-15T12:00:00Z", "updated_at": "2026-04-15T12:00:00Z", "user": {} } ], "count": 1, "limit": 1, "offset": 1}