For the complete documentation index, see llms.txt. This page is also available as Markdown.

Audits (Core)

Auditing helps determine who did what when.

Deprecated

List audits

get

This part of the API is deprecated. For details, see the API release lifecycle documentation.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
sizenumberOptional
startAfterIdstringOptional
entityRefstringOptional
entityTypestring · enumOptionalPossible values:
tracestringOptional
Responses
200

Paginated result containing the matching Audit entities

application/json

AuditsResult

totalnumberRequired

The total number of audits that match the filter criteria

get/api/audits
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
}

List audits (search)

post

This part of the API is in Alpha status. For details, see the API release lifecycle documentation. Search for Audit

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

AuditSearchPayload

afterstringOptional

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.

beforestringOptional

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).

lastnumber · min: 1 · max: 250Optional

Number of items to return for backward pagination. Cannot be used with 'size' (first). Default: 20.

sizenumber · min: 1 · max: 250Optional

Number of items to return for forward pagination. Cannot be used with 'last'. Default: 20.

Example: 10
startAfterIdstringOptionalDeprecated

The ID to start after. Deprecated, use after with the value provided in pageInfo.endCursor instead.

Responses
200

Your search result

application/json

AuditPaginatedResult

totalnumberOptional

The total number of items matching the search criteria. Only filled, if withTotal is set to true in the search options.

post/api/audits/search
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?