Returns API Calls

GET/unified/apicall

Parameters

limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
external_xrefstring
Filter the results to only those integrations for your user referenced by this value
integration_typestring
Filter the results to just this integration
errorboolean
Filter the results for API Calls with errors
connection_idstring
Filter the results to just this integration
envstring default=Production
webhook_idstring
Filter the results to just this webhook
type enum
Filter the results to just this type
is_billableboolean
Filter the results for only billable API Calls

Returns

ApiCallarray
idstring read-only
Unique identifier for this API call
created_atdate read-only
The date that this object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
connection_idstring
workspace_idstring read-only
(reference to KmsSpace)
integration_typestring required
The integration type
external_xrefstring
your customer's user ID
namestring required
The called name of the API method
pathstring required
The called API method's HTTP verb and route path (PUT /crm/{integration}/deak/{id})
sizenumber
The size of the response
statusstring required
The resulting HTTP status code (200)
errorstring
The error description (if status code is >= 400)
ip_addressstring
type enum required
Valid values:
"login"
"webhook"
"inbound"
"mcp"
The type of API Call being logged
methodstring required
environmentstring
webhook_idstring
is_billableboolean
user_agentstring
unified_response_timenumber
endapi_response_timenumber
const options = {
  method: 'GET',
  url: 'https://api.unified.to/unified/apicall',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-06-26T21:08:49.521Z',
    sort: 'updated_at',
    order: 'asc',
    external_xref: '',
    integration_type: '',
    error: false,
    connection_id: '',
    env: 'Production',
    webhook_id: '',
    type: '',
    is_billable: false,
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?