Skip to main content
GET
/
periods
List accounting periods
curl --request GET \
  --url https://api.arcuserp.com/v1/periods \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "period_name": "<string>",
      "start_date": "2023-12-25",
      "end_date": "2023-12-25",
      "status": "open",
      "closed_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "closed_at": "2023-11-07T05:31:56Z",
      "close_requested_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "close_requested_at": "2023-11-07T05:31:56Z",
      "close_approved_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "close_approved_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

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.

Query Parameters

status
enum<string>
Available options:
open,
close_requested,
closed
fiscal_year
integer

Filter by fiscal year (e.g. 2025)

Response

List of accounting periods

data
object[]