Skip to main content
Artemis notifies your system via an HTTP callback when a customer record is created or when its status changes. This page describes the outbound request Artemis makes: HTTP method, headers, JSON body and the allowed enum values.

1. When the callback fires

Artemis sends a callback when either of the following happens for a customer in your domain:
Notes
  • UPDATE is triggered by status transitions (e.g. DRAFT → PENDING, PENDING → CLEARED, * → REQUIRE_UPDATE), not by every field edit.
  • Callbacks are delivered after the change is committed in Artemis. If the customer is subsequently modified again, you may receive another callback.

2. The HTTP request

2.1 Method and URL

The HTTP method and target URL are those registered for your domain. Artemis typically calls with POST; PUT and PATCH are also supported.

2.2 Headers

No authentication or signature headers are sent by Artemis. If your endpoint requires authentication, front it with an IP allowlist or a gateway that injects credentials server-side.

2.3 Body

The callback body is a single JSON object with the following fields:

3. Enum values

Treat the enum sets as additive — your parser should not hard-fail on unrecognised values.

4. Example payloads

4.1 New customer (INSERT)

4.2 Status change (UPDATE)


5. Expected response

  • Return any 2xx status code to acknowledge receipt.
  • The response body is ignored.
  • There is no automatic retry on failure. Your endpoint should:
    • Respond quickly (treat the work as acknowledge-and-enqueue).
    • Be idempotent — use customerId + action + the current status / riskRating to dedupe if you receive repeats.
    • Not depend on strict ordering — if you need the absolute latest state, re-fetch the customer from the Artemis API using customerId or customerReferenceId.

6. Integration checklist

  • Expose an HTTPS endpoint that accepts the configured HTTP method and a JSON body.
  • Parse the payload using the field table in §2.3; tolerate unknown enum values.
  • Respond 2xx quickly; process asynchronously on your side.
  • Dedupe on customerId + status + riskRating (no retries, but repeats can happen across multiple status changes).
  • Protect the endpoint at the network layer (no auth header is sent by Artemis).