Skip to main content
GET
/
resources
/
{type}
/
{id}
/
activity
List activity events for a specific resource
curl --request GET \
  --url https://api.arcuserp.com/v1/resources/{type}/{id}/activity \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "act_550e8400e29b41d4a716446655440000",
      "object": "activity_event",
      "entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "actor": {
        "type": "user",
        "id": "<string>",
        "label": "<string>",
        "on_behalf_of": {
          "type": "user",
          "id": "<string>",
          "label": "<string>"
        }
      },
      "action": "account.created",
      "resource_type": "account",
      "resource_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "resource_label": "<string>",
      "description": "<string>",
      "severity": "info",
      "outcome": "success",
      "error_code": "<string>",
      "request_id": "<string>",
      "metadata": {},
      "diff": {
        "before": "<unknown>",
        "after": "<unknown>"
      }
    }
  ],
  "has_more": true,
  "next_cursor": "<string>",
  "url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.arcuserp.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key issued per entity via Settings > Developers > API Keys. Each key carries scopes (e.g. orders:read, products:write). Bearer token format: Authorization: Bearer ark_live_ent_Test keys use ark_test_ent_. Both are issued per entity
via Settings > Developers > API Keys.

Path Parameters

type
string
required

Resource type (e.g. account, product, order, journal_entry).

id
string<uuid>
required

Resource UUID.

Query Parameters

limit
integer
default:20
Required range: 1 <= x <= 100
starting_after
string

Cursor for pagination.

actor_type
enum<string>
Available options:
user,
api_key,
system
actor_id
string

Response

Paginated list of activity events for the resource.

object
enum<string>
Available options:
list
data
object[]
has_more
boolean
next_cursor
string | null
url
string