Create Agent
/extensions/roboledger/{graph_id}/operations/create-agentPart of Extensions: RoboLedger.
Create a counterparty record (customer, vendor, employee, etc.). The (source, external_id) pair is a dedup key — a second insert with the same pair returns 409. Use update-agent to patch fields.
Idempotency: supply an Idempotency-Key header to make safe retries; replays within 24 hours return the same envelope. Reusing the key with a different body returns HTTP 409 Conflict.
Authentication
Authenticate in any one of these ways — not all of them:
- API key in the
X-API-Keyheader. - Bearer token in the
Authorizationheader.
Path parameters
| Name | Type | Description |
|---|---|---|
graph_idrequired | string | Graph Id |
Header parameters
| Name | Type | Description |
|---|---|---|
Idempotency-Keyoptional | string | Idempotency-Key |
Request body
Required, application/json.
| Field | Type | Description |
|---|---|---|
agent_typerequired | string | Relationship category: 'customer' | 'vendor' | 'employee' | 'owner' | 'supplier' | 'government' | 'lender' | 'self' | 'other'. |
namerequired | string | Display name shown in lists and on transactions. |
legal_nameoptional | string | Full registered legal name (when different from `name`). |
tax_idoptional | string | Tax ID (EIN / SSN / VAT). Used for 1099 / withholding reporting. |
registration_numberoptional | string | Registry-issued company number (e.g. state corp file number). |
dunsoptional | string | Dun & Bradstreet DUNS number. |
leioptional | string | Legal Entity Identifier (ISO 17442). |
emailoptional | string | |
phoneoptional | string | |
addressoptional | object | Free-form address object (e.g. {"line1": "...", "city": "...", "state": "...", "postal_code": "..."}). |
sourceoptional | string | Provenance: 'native' (created in-app), 'quickbooks' / 'xero' / 'plaid' (synced from integration). Drives reconciliation behavior. Default: |
external_idoptional | string | Source system primary key — used to match on subsequent syncs. |
is_activeoptional | boolean | Inactive agents stay in history but can't be picked for new txns. Default: |
is_1099_recipientoptional | boolean | Marks a vendor as 1099-eligible. Drives year-end 1099 reporting. Default: |
metadataoptional | object |
Example request
curl -X POST "https://api.robosystems.ai/extensions/roboledger/{graph_id}/operations/create-agent" \
-H "X-API-Key: $ROBOSYSTEMS_API_KEY" \
-H "Idempotency-Key: <Idempotency-Key>" \
-H "Content-Type: application/json" \
-d '{
"agent_type": "vendor",
"is_1099_recipient": true,
"name": "Acme Office Supplies",
"tax_id": "12-3456789"
}'Responses
200 Successful Response
| Field | Type | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
operationrequired | string | Kebab-case operation name | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
operationIdrequired | string | op_-prefixed ULID for audit and SSE correlation | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
statusrequired | string | Operation lifecycle state One of: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resultoptional | LedgerAgentResponse | Command-specific result payload LedgerAgentResponse fields
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
atrequired | string | ISO-8601 UTC timestamp | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
createdByoptional | string | User ID that initiated the operation (null for legacy callers) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
idempotentReplayoptional | boolean | True when this envelope came from the idempotency cache — the underlying command did not execute again. False on fresh executions. Default: |
| Status | Meaning |
|---|---|
| 400 | Invalid request |
| 401 | Authentication required |
| 403 | Access denied |
| 404 | Resource not found |
| 409 | Idempotency-Key conflict — key reused with different body |
| 422 | Validation error |
| 429 | Rate limit exceeded |
| 500 | Internal server error |