Artifacts

Record an artifacts cache usage event

Records an artifacts cache usage event. The body of this request is an array of cache usage events. The supported event types are `HIT` and `MISS`. The source is either `LOCAL` the cache event was on the users filesystem cache or `REMOTE` if the cache event is for a remote cache. When the event is a `HIT` the request also accepts a number `duration` which is the time taken to generate the artifact in the cache.

POST
/v8/artifacts/events

Authorization

AuthorizationRequiredBearer <token>

Default authentication mechanism

In: header

Request Body

application/jsonOptional
bodyarray<object>

Query Parameters

teamIdstring

The Team identifier to perform the request on behalf of.

slugstring

The Team slug to perform the request on behalf of.

Header Parameters

x-artifact-client-cistring

The continuous integration or delivery environment where this artifact is downloaded.

Maximum length: 50
x-artifact-client-interactiveinteger

1 if the client is an interactive shell. Otherwise 0

Minimum: 0Maximum: 1
curl -X POST "https://api.vercel.com/v8/artifacts/events?teamId=string&slug=string" \
  -H "x-artifact-client-ci: VERCEL" \
  -H "x-artifact-client-interactive: 0" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "sessionId": "string",
      "source": "LOCAL",
      "event": "HIT",
      "hash": "12HKQaOmR5t5Uy6vdcQsNIiZgHGB",
      "duration": 400
    }
  ]'

Success. Event recorded.