SellAuth

Activity Logs

Get Activity Logs

Retrieves the activity logs.

GET
/v1/shops/{shopId}/activity-logs

Authorization

AuthorizationRequiredBearer <token>

You can retrieve your API key by visiting your dashboard and clicking Account > API.

In: header

Path Parameters

shopIdRequiredinteger

The shop ID.

curl -X GET "https://api.sellauth.com/v1/shops/{shopId}/activity-logs" \
  -H "Authorization: Bearer <token>"

{
  "current_page": 1,
  "data": [
    {
      "id": 9664,
      "type": "created",
      "user_id": 19,
      "user_email": "api@sellauth.com",
      "subject_id": 18,
      "subject_type": "blacklist",
      "properties": null,
      "created_at": "2026-01-25T17:04:45.000000Z"
    },
    {
      "id": 9663,
      "type": "created",
      "user_id": 19,
      "user_email": "api@sellauth.com",
      "subject_id": 3,
      "subject_type": "blogPost",
      "properties": null,
      "created_at": "2026-01-25T17:04:24.000000Z"
    },
    {
      "id": 9660,
      "type": "updated",
      "user_id": 19,
      "user_email": "api@sellauth.com",
      "subject_id": 762,
      "subject_type": "product",
      "properties": null,
      "created_at": "2026-01-25T17:03:04.000000Z"
    },
    {
      "id": 9659,
      "type": "created",
      "user_id": 19,
      "user_email": "api@sellauth.com",
      "subject_id": 5,
      "subject_type": "category",
      "properties": null,
      "created_at": "2026-01-25T17:02:56.000000Z"
    },
    {
      "id": 9658,
      "type": "updated",
      "user_id": 19,
      "user_email": "api@sellauth.com",
      "subject_id": 762,
      "subject_type": "product",
      "properties": null,
      "created_at": "2026-01-25T17:02:32.000000Z"
    }
  ],
  "first_page_url": "https://api.sellauth.com/v1/shops/38/activity-logs?page=1",
  "from": 1,
  "last_page": 1,
  "last_page_url": "https://api.sellauth.com/v1/shops/38/activity-logs?page=1",
  "links": [
    {
      "url": null,
      "label": "&laquo; Previous",
      "active": false
    },
    {
      "url": "https://api.sellauth.com/v1/shops/38/activity-logs?page=1",
      "label": "1",
      "active": true
    },
    {
      "url": null,
      "label": "Next &raquo;",
      "active": false
    }
  ],
  "next_page_url": null,
  "path": "https://api.sellauth.com/v1/shops/38/activity-logs",
  "per_page": 20,
  "prev_page_url": null,
  "to": 5,
  "total": 5
}