Audits (Core)
Auditing helps determine who did what when.
This part of the API is deprecated. For details, see the API release lifecycle documentation.
Paginated result containing the matching Audit entities
AuditsResult
The total number of audits that match the filter criteria
Your user is not allowed to operate against this API instance
Your user, although recognized, is not authorized to use this endpoint
GET /api/audits HTTP/1.1
Host: your-tenant-name.api.fulfillmenttools.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"audits": [
{
"actor": {
"details": {
"topic": "text",
"username": "text"
},
"id": "text"
},
"anonymizationDate": "2026-01-01T00:00:00.000Z",
"client": {
"api": "text",
"rawInfo": "text"
},
"created": "2026-01-01T00:00:00.000Z",
"deletionDate": "2026-01-01T00:00:00.000Z",
"entityCreated": "2026-01-01T00:00:00.000Z",
"entityRef": "text",
"entityType": "PACK_JOB",
"entityVersion": 1,
"eventId": "text",
"globalActor": {
"details": {
"topic": "text",
"username": "text"
},
"id": "text"
},
"id": "text",
"isAnonymized": true,
"lastModified": "2026-01-01T00:00:00.000Z",
"operation": {
"name": "text",
"start": "2026-01-01T00:00:00.000Z"
},
"trace": "text",
"version": 1
}
],
"total": 1
}This part of the API is in Alpha status. For details, see the API release lifecycle documentation. Search for Audit
AuditSearchPayload
The cursor to start after for forward pagination. The value is provided in the pageInfo.endCursor field of the response. Cannot be used with before or last.
The cursor to start before for backward pagination. The value is provided in the pageInfo.startCursor field of the response. Cannot be used with after or size (first).
Number of items to return for backward pagination. Cannot be used with 'size' (first). Default: 20.
Number of items to return for forward pagination. Cannot be used with 'last'. Default: 20.
10The ID to start after. Deprecated, use after with the value provided in pageInfo.endCursor instead.
Your search result
AuditPaginatedResult
The total number of items matching the search criteria. Only filled, if withTotal is set to true in the search options.
Your user is not allowed to operate against this API instance
Your user, although recognized, is not authorized to use this endpoint
POST /api/audits/search HTTP/1.1
Host: your-tenant-name.api.fulfillmenttools.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1261
{
"after": "text",
"before": "text",
"last": 1,
"options": {
"withTotal": true
},
"query": {
"and": [
{
"and": [
{
"and": "[Circular Reference]",
"entityRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"entityType": {
"eq": "PACK_JOB",
"in": [
"PACK_JOB"
],
"notEq": "PACK_JOB"
},
"or": "[Circular Reference]",
"trace": {
"eq": "text",
"in": [
"text"
],
"notEq": "text",
"notIn": [
"text"
]
}
}
],
"entityRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"entityType": {
"eq": "PACK_JOB",
"in": [
"PACK_JOB"
],
"notEq": "PACK_JOB"
},
"or": [
{
"and": "[Circular Reference]",
"entityRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"entityType": {
"eq": "PACK_JOB",
"in": [
"PACK_JOB"
],
"notEq": "PACK_JOB"
},
"or": "[Circular Reference]",
"trace": {
"eq": "text",
"in": [
"text"
],
"notEq": "text",
"notIn": [
"text"
]
}
}
],
"trace": {
"eq": "text",
"in": [
"text"
],
"notEq": "text",
"notIn": [
"text"
]
}
}
],
"entityRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"entityType": {
"eq": "PACK_JOB",
"in": [
"PACK_JOB"
],
"notEq": "PACK_JOB"
},
"or": [
{
"and": "[Circular Reference]",
"entityRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"entityType": {
"eq": "PACK_JOB",
"in": [
"PACK_JOB"
],
"notEq": "PACK_JOB"
},
"or": "[Circular Reference]",
"trace": {
"eq": "text",
"in": [
"text"
],
"notEq": "text",
"notIn": [
"text"
]
}
}
],
"trace": {
"eq": "text",
"in": [
"text"
],
"notEq": "text",
"notIn": [
"text"
]
}
},
"size": 10,
"sort": [
{
"created": "ASC"
}
]
}{
"audits": [
{
"actor": {
"details": {
"topic": "text",
"username": "text"
},
"id": "text"
},
"anonymizationDate": "2026-01-01T00:00:00.000Z",
"client": {
"api": "text",
"rawInfo": "text"
},
"created": "2026-01-01T00:00:00.000Z",
"deletionDate": "2026-01-01T00:00:00.000Z",
"entityCreated": "2026-01-01T00:00:00.000Z",
"entityRef": "text",
"entityType": "PACK_JOB",
"entityVersion": 1,
"eventId": "text",
"globalActor": {
"details": {
"topic": "text",
"username": "text"
},
"id": "text"
},
"id": "text",
"isAnonymized": true,
"lastModified": "2026-01-01T00:00:00.000Z",
"operation": {
"name": "text",
"start": "2026-01-01T00:00:00.000Z"
},
"trace": "text",
"version": 1
}
],
"pageInfo": {
"endCursor": "text",
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "text"
},
"total": 1
}Last updated
Was this helpful?

