Skip to main content
POST
/
entities
/
{entity_id}
/
migration
/
cutover
/
verify
Run reconciliation suite and return pass/fail
curl --request POST \
  --url https://api.arcuserp.com/v1/entities/{entity_id}/migration/cutover/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "as_of_date": "2023-12-25"
}
'
{
  "object": "cutover_verify_result",
  "entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "verified_at": "2023-11-07T05:31:56Z",
  "passed": true,
  "verify_log_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "results": {
    "trial_balance": {
      "in_balance": true,
      "imbalance": 123,
      "total_debit": 123,
      "total_credit": 123
    },
    "ar_aging": {
      "total": 123
    },
    "ap_aging": {
      "total": 123
    },
    "counts": {},
    "errors": [
      {
        "check": "<string>",
        "error": "<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

entity_id
string<uuid>
required

Body

application/json
as_of_date
string<date>

Reconciliation as-of date (defaults to today).

Response

Verify result

Composite reconciliation pass/fail result.

object
enum<string>
Available options:
cutover_verify_result
entity_id
string<uuid>
verified_at
string<date-time>
passed
boolean
verify_log_id
string<uuid>

Reference this in POST .../unfreeze body.verify_log_id.

results
object