Upload a cache artifact
Uploads a cache artifact identified by the `hash` specified on the path. The cache artifact can then be downloaded with the provided `hash`. The request body should contain a gzip-compressed tarball of the task outputs. The server should store this data and make it available for subsequent downloads.
Authorization
bearerToken Bearer token authentication. Pass your authentication token in the Authorization header as Bearer <token>.
For self-hosted implementations, the token format and validation logic is up to the implementer. Common approaches include:
- Static tokens for simple setups
- JWT tokens for stateless authentication
- OAuth2 tokens for integration with identity providers
In: header
Path Parameters
The artifact hash. This is a content-addressable hash that uniquely identifies the cached artifact based on task inputs.
^[a-fA-F0-9]+$1 <= lengthQuery Parameters
The team identifier to perform the request on behalf of. Used for multi-tenant cache implementations where artifacts are scoped to teams.
The team slug to perform the request on behalf of. Alternative to teamId for identifying the team.
Header Parameters
The artifact size in bytes
0 <= valueThe time taken to generate the artifact in milliseconds. This value is stored and returned when the artifact is downloaded.
0 <= valueA base64-encoded tag for this artifact, typically used for verification. This value is stored and returned when the artifact is downloaded via the x-artifact-tag response header.
length <= 600The continuous integration or delivery environment where this artifact operation is being performed. Examples: github-actions, circleci, jenkins.
length <= 50Indicates whether the client is running in an interactive shell. 1 for interactive, 0 for non-interactive (CI/scripts).
0 | 1Request Body
application/octet-stream
The artifact data as a gzip-compressed tarball
binaryResponse Body
application/json
application/json
application/json
application/json
application/json
curl -X PUT "https://localhost:3000/artifacts/string" \ -H "Content-Length: 0" \ -H "Content-Type: application/octet-stream" \ -d 'string'{
"urls": [
"http://example.com"
]
}{
"urls": [
"http://example.com"
]
}{
"code": "string",
"message": "string"
}{
"code": "string",
"message": "string"
}{
"code": "string",
"message": "string"
}