Release Notes
April 22, 2026
April 22, 2026 Karbon API release adds the ability to filter Organizations by their external system ID.
Filter Organizations by External ID
A
JSONCopied!
GETJSONCopied!
/v3/OrganizationsJSONCopied!
ExternalIdJSONCopied!
ExternalIdFor example:
JSONCopied!GET /v3/Organizations?$filter=ExternalId eq '123987456'
This returns only Organizations whose external ID matches the provided value. The
JSONCopied!
ExternalIdJSONCopied!
andJSONCopied!{
"@odata.context": "https://api.karbonhq.com/v3/$metadata#Organizations/KarbonService.OrganizationSummaryDTO",
"@odata.count": 1,
"value": [
{
"@odata.type": "#KarbonService.OrganizationSummaryDTO",
"OrganizationKey": "2Nw8tnxwQCVf",
"FullName": "Sample Company",
"PhoneNumber": null,
"Website": null,
"EmailAddress": "info@samplecompany.com",
"ContactType": "Client",
"LastModifiedDateTime": "2026-04-20T10:15:30Z",
"Tags": []
}
]
}
The following External IDs are supported:
| Integration | ExternalId value |
|---|---|
| XPM | API v3.0 Client ID |
| Xero | Contact ID |
| QuickBooks Online Accountant | Intuit Customer ID |
| ProConnect | Intuit Customer ID |
Note: External IDs are not guaranteed to be unique across connected systems. If multiple integrations are enabled in Karbon, this filter may return multiple results.