Open app

Developer settings

Manage a workspace's API keys, webhooks, event history, and API request logs.

A workspace's Settings → Developer section is where you connect the workspace to your own systems: server API keys, outbound webhooks, and the logs that show what's happening over the API.

The Developer section is only visible to members with developer access in the workspace. For documentation on building against the API itself, see the Developer docs.

API keys

Workspace API keys let your servers call the Mercel API scoped to this one workspace. Unlike a personal token, a workspace key isn't tied to a person, so it keeps working as your team changes.

The workspace API keys page, listing a key with its masked value and creation date, and a button to create a key.
Server-to-server keys scoped to this workspace.
  1. Click Create key and give it a descriptive name.
  2. Copy the key and store it somewhere safe — it's shown in full only once.

Revoke a key from its row to cut off access immediately. Rotate to a replacement first if a live integration is using it.

Webhooks

Webhooks push events to a URL you control, so your systems react in real time instead of polling. Endpoints are managed from Developer → Webhooks.

The webhooks page, listing an endpoint with its URL, subscribed events, and recent delivery health.
Each endpoint shows its URL, the events it's subscribed to, and recent delivery health.

Add an endpoint

  1. Click Add endpoint.
  2. Enter the URL Mercel should send events to.
  3. Select the events to subscribe to.
  4. Save. Mercel issues a signing secret — use it to verify that deliveries really came from Mercel.

Inspect and replay deliveries

Open an endpoint to see every delivery, its status, and the exact request and response. From here you can:

  • Replay a delivery to send it again.
  • Pause or edit the endpoint, or change which events it receives.

If an endpoint fails repeatedly, Mercel disables it automatically and notifies members with developer access. Fix the destination, then re-enable it.

Events

The Events page is an audit log of everything that has happened in the workspace — products created, settings changed, keys issued, and more. It's the source of truth for "what happened, when, and who did it."

The workspace events page, a chronological log of events with filters for date, actor, and type.
A chronological, filterable record of activity in the workspace.

Filter by date, actor, or event type to narrow the list, and open any event to see its full details, including who triggered it and the data payload.

API logs

The API logs page records the requests your integrations make to the Mercel API for this workspace — the method, path, response status, and how long each took. Filter by date, method, or status, and open a request to see its details. It's the first place to look when an integration isn't behaving as expected.

On this page