curl --request POST \
--url https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"external_id": "5611654",
"source_id": "6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b",
"source_module": "invoice"
},
{
"external_id": "5611655",
"source_id": "7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c",
"source_module": "payment"
}
]
}
'import requests
url = "https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source"
payload = { "items": [
{
"external_id": "5611654",
"source_id": "6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b",
"source_module": "invoice"
},
{
"external_id": "5611655",
"source_id": "7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c",
"source_module": "payment"
}
] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
items: [
{
external_id: '5611654',
source_id: '6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b',
source_module: 'invoice'
},
{
external_id: '5611655',
source_id: '7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c',
source_module: 'payment'
}
]
})
};
fetch('https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'items' => [
[
'external_id' => '5611654',
'source_id' => '6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b',
'source_module' => 'invoice'
],
[
'external_id' => '5611655',
'source_id' => '7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c',
'source_module' => 'payment'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source"
payload := strings.NewReader("{\n \"items\": [\n {\n \"external_id\": \"5611654\",\n \"source_id\": \"6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b\",\n \"source_module\": \"invoice\"\n },\n {\n \"external_id\": \"5611655\",\n \"source_id\": \"7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c\",\n \"source_module\": \"payment\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"external_id\": \"5611654\",\n \"source_id\": \"6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b\",\n \"source_module\": \"invoice\"\n },\n {\n \"external_id\": \"5611655\",\n \"source_id\": \"7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c\",\n \"source_module\": \"payment\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"items\": [\n {\n \"external_id\": \"5611654\",\n \"source_id\": \"6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b\",\n \"source_module\": \"invoice\"\n },\n {\n \"external_id\": \"5611655\",\n \"source_id\": \"7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c\",\n \"source_module\": \"payment\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"object": "migration_je_source_relink_result",
"total": 123,
"relinked": 123,
"already_linked": 123,
"not_found": 123,
"failed": 123,
"source_type_upgraded": 123,
"descriptions_enriched": 123,
"results": [
{
"external_id": "<string>",
"journal_entry_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_id": "<string>",
"source_type": "<string>",
"source_type_upgraded": true,
"description_enriched": true,
"relinked": true,
"error": "<string>",
"code": "<string>",
"hint": "<string>"
}
]
}{
"error": "not_found",
"code": "not_found",
"type": "not_found",
"hint": "The requested order does not exist or does not belong to this entity.",
"param": "expand[0]",
"required": "accounts:read",
"request_id": "req_abc123"
}{
"error": "not_found",
"code": "not_found",
"type": "not_found",
"hint": "The requested order does not exist or does not belong to this entity.",
"param": "expand[0]",
"required": "accounts:read",
"request_id": "req_abc123"
}{
"error": "not_found",
"code": "not_found",
"type": "not_found",
"hint": "The requested order does not exist or does not belong to this entity.",
"param": "expand[0]",
"required": "accounts:read",
"request_id": "req_abc123"
}Relink migrated JE source_id to Arcus order/invoice UUIDs
A migrated historical journal entry is born with source_id holding the
source-system (Versa) document INTEGER, because historical GL is loaded
BEFORE orders/invoices: the Arcus order/invoice UUID does not exist yet.
Native Arcus order JEs set source_id = the Arcus order UUID, and the
GL UI / reports resolve the source document by that UUID.
This endpoint is the corrective reconciliation pass run AFTER orders and
invoices are migrated. The caller supplies a batch of items, each
mapping a source-system journal id (external_id, carried on
journal_entries.external_id) to its Arcus order/invoice UUID
(source_id).
Strict-resolve safety. source_id must be a UUID that resolves to
an order in the entity (or a vendor_bill when source_module=‘ap’ or
new_source_type is AP_BILL / AP_PAYMENT, added 2026-05-27). A non-UUID
or non-resolving value is rejected, never written — this prevents
re-stamping a source-system integer or mislinking across entities.
Idempotent. When a JE already carries the target source_id
(and the target source_type and description match), the item
returns relinked=false (no-op). Re-running the whole pass is safe.
Scope guard (relaxed 2026-05-27 MIGRATION-MAPPING-NATIVE). Only
journal_entries whose external_source = 'versa_cloud' can be
matched. Previously also required source_type = VERSA_MIGRATION;
relaxed so the handler can relink rows that the loader has already
classified to canonical source_types (PAYMENT, INVOICE, AP_BILL, etc).
is_historical_import is asserted as a belt-and-suspenders guard.
Native Arcus JEs (external_source IS NULL) are never matched.
Optional source_type upgrade (new_source_type, added 2026-05-27).
When supplied, upgrades source_type from VERSA_MIGRATION to a
canonical Arcus value. The handler never downgrades a canonical
source_type back to the fallback.
Optional description enrichment (enrich_description, added 2026-05-27).
When true, rebuilds description from the canonical native template
with the order_number suffix. Non-order-attached source_types
(INVENTORY_ADJUSTMENT / MANUAL / BANK_RECON / BANK_DEPOSIT) are skipped
to preserve the Versa memo carried by the loader.
Pure header UPDATE. Touches only journal_entries.source_id,
source_module, source_type, and description. No line is touched,
no amount is touched, no FK is created or dropped.
Scope: migration:write.
curl --request POST \
--url https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"items": [
{
"external_id": "5611654",
"source_id": "6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b",
"source_module": "invoice"
},
{
"external_id": "5611655",
"source_id": "7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c",
"source_module": "payment"
}
]
}
'import requests
url = "https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source"
payload = { "items": [
{
"external_id": "5611654",
"source_id": "6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b",
"source_module": "invoice"
},
{
"external_id": "5611655",
"source_id": "7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c",
"source_module": "payment"
}
] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
items: [
{
external_id: '5611654',
source_id: '6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b',
source_module: 'invoice'
},
{
external_id: '5611655',
source_id: '7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c',
source_module: 'payment'
}
]
})
};
fetch('https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'items' => [
[
'external_id' => '5611654',
'source_id' => '6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b',
'source_module' => 'invoice'
],
[
'external_id' => '5611655',
'source_id' => '7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c',
'source_module' => 'payment'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source"
payload := strings.NewReader("{\n \"items\": [\n {\n \"external_id\": \"5611654\",\n \"source_id\": \"6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b\",\n \"source_module\": \"invoice\"\n },\n {\n \"external_id\": \"5611655\",\n \"source_id\": \"7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c\",\n \"source_module\": \"payment\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"items\": [\n {\n \"external_id\": \"5611654\",\n \"source_id\": \"6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b\",\n \"source_module\": \"invoice\"\n },\n {\n \"external_id\": \"5611655\",\n \"source_id\": \"7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c\",\n \"source_module\": \"payment\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.arcuserp.com/v1/entities/{entity_id}/migration/journal-entries/relink-source")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"items\": [\n {\n \"external_id\": \"5611654\",\n \"source_id\": \"6b1e9a4f-1d2c-4f8e-9c8a-8b1d2e3f4a5b\",\n \"source_module\": \"invoice\"\n },\n {\n \"external_id\": \"5611655\",\n \"source_id\": \"7c2f0b5e-2e3d-5f9f-ad9b-9c2e3f4a5b6c\",\n \"source_module\": \"payment\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"object": "migration_je_source_relink_result",
"total": 123,
"relinked": 123,
"already_linked": 123,
"not_found": 123,
"failed": 123,
"source_type_upgraded": 123,
"descriptions_enriched": 123,
"results": [
{
"external_id": "<string>",
"journal_entry_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_id": "<string>",
"source_type": "<string>",
"source_type_upgraded": true,
"description_enriched": true,
"relinked": true,
"error": "<string>",
"code": "<string>",
"hint": "<string>"
}
]
}{
"error": "not_found",
"code": "not_found",
"type": "not_found",
"hint": "The requested order does not exist or does not belong to this entity.",
"param": "expand[0]",
"required": "accounts:read",
"request_id": "req_abc123"
}{
"error": "not_found",
"code": "not_found",
"type": "not_found",
"hint": "The requested order does not exist or does not belong to this entity.",
"param": "expand[0]",
"required": "accounts:read",
"request_id": "req_abc123"
}{
"error": "not_found",
"code": "not_found",
"type": "not_found",
"hint": "The requested order does not exist or does not belong to this entity.",
"param": "expand[0]",
"required": "accounts:read",
"request_id": "req_abc123"
}Authorizations
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.
Headers
Optional idempotency key. If supplied, retrying the same call within 24 hours returns the previous result.
Path Parameters
Body
Batch JE source-relink payload (up to 500 items per call).
1 - 500 elementsShow child attributes
Show child attributes
Response
JE source-relink result
Result envelope for JE source relink. Each row in results reports
independently; a failure on one item does not roll back the others. Pure
column UPDATE on the JE header (source_id / source_module / source_type /
description). No line is touched and no amount is touched.
migration_je_source_relink_result Total per-batch count of rows where source_type was upgraded from VERSA_MIGRATION to a canonical value. Added 2026-05-27.
Total per-batch count of rows where the description was rebuilt to the canonical native template. Added 2026-05-27.
Show child attributes
Show child attributes
Was this page helpful?

