# CreateImage registers pushed OCI content or disk content derived from a snapshot or sandbox.


[API catalog](/reference/api/) · [Docker Sandboxes overview](/reference/api/sandboxes/latest/) · [Product manual](https://docs.docker.com/ai/sandboxes-api/) · [OpenAPI specification](/reference/api/sandboxes/api.yaml)

API version: v1


> This API is experimental. Features, interfaces,
> and behavior may change.




`POST /v1/images`

CreateImage registers pushed OCI content or disk content derived from a snapshot or sandbox.

## Connection and access

[API connection and authentication guidance](/reference/api/sandboxes/latest/#authentication)


Server: `https://connect.docker.com/sandboxes`

Effective security: alternatives are OR; schemes within an alternative are AND. An empty array declares no HTTP authentication requirement.

```json
[
  {
    "bearer": []
  }
]
```

## Example request

Replace placeholders and provide the required credentials or request body.

```console
curl \
  --request POST \
  --header "Authorization: Bearer ${TOKEN}" \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --data-binary @request-body \
  'https://connect.docker.com/sandboxes/v1/images'
```


Prepare request-body using the selected media type and schema.


## Parameters

### Idempotency-Key

Location: header. Required: no.

Replay key. Reusing it with a different payload fails with failedPrecondition; accepted keys are retained for at least 24 hours.

```json
{
  "description": "Replay key. Reusing it with a different payload fails with failedPrecondition; accepted keys are retained for at least 24 hours.",
  "in": "header",
  "name": "Idempotency-Key",
  "pointer": "/paths/~1v1~1images/post/parameters/0",
  "schema": {
    "description": "Idempotency key. A replay returns the first result; the same key with a different payload fails with FAILED_PRECONDITION; retained at least 24 hours.",
    "title": "Idempotency-Key",
    "type": "string"
  }
}
```

## Request and responses

### Request  application/json




Schema:

```json
{
  "$ref": "#/components/schemas/CreateImageRequest"
}
```










### Response 201 application/json

Success


Schema:

```json
{
  "allOf": [
    {
      "$ref": "#/components/schemas/Image"
    },
    {
      "not": {
        "properties": {
          "status": {
            "enum": [
              "pending",
              "waitingForPush",
              "preparing"
            ]
          }
        },
        "required": [
          "status"
        ]
      }
    }
  ]
}
```



Headers:

```json
{
  "Cache-Control": {
    "required": true,
    "schema": {
      "const": "no-store",
      "type": "string"
    }
  },
  "ETag": {
    "description": "The etag of the resource this response carries, which the next mutation of it sends as If-Match.",
    "schema": {
      "type": "string"
    }
  }
}
```








### Response 202 application/json

Accepted. The resource is still progressing; read it or follow its events until completion.


Schema:

```json
{
  "allOf": [
    {
      "$ref": "#/components/schemas/Image"
    },
    {
      "properties": {
        "status": {
          "enum": [
            "pending",
            "waitingForPush",
            "preparing"
          ]
        }
      },
      "required": [
        "status"
      ]
    }
  ]
}
```



Headers:

```json
{
  "Cache-Control": {
    "required": true,
    "schema": {
      "const": "no-store",
      "type": "string"
    }
  },
  "ETag": {
    "description": "The etag of the resource this response carries, which the next mutation of it sends as If-Match.",
    "schema": {
      "type": "string"
    }
  }
}
```








### Response 409 application/json

Creation conflicts with an existing resource (ALREADY_EXISTS).

The Idempotency-Key was already used with a different payload.


Schema:

```json
{
  "$ref": "#/components/schemas/Error"
}
```



Headers:

```json
{
  "Cache-Control": {
    "required": true,
    "schema": {
      "enum": [
        "no-store"
      ],
      "type": "string"
    }
  }
}
```







failedPrecondition:
```json
{
  "code": "failedPrecondition",
  "message": "The Idempotency-Key was already used with a different payload."
}
```


### Response default application/json

The structured Error body identifies the failure with a stable code and optional typed details.


Schema:

```json
{
  "$ref": "#/components/schemas/Error"
}
```



Headers:

```json
{
  "Cache-Control": {
    "required": true,
    "schema": {
      "enum": [
        "no-store"
      ],
      "type": "string"
    }
  }
}
```







Schema example:
```json
{
  "code": "notFound",
  "details": [],
  "message": "sandbox not found"
}
```


## Complete operation contract

```json
{
  "description": "CreateImage registers pushed OCI content or disk content derived from a snapshot or sandbox.",
  "operationId": "createImage",
  "parameters": [
    {
      "description": "Replay key. Reusing it with a different payload fails with failedPrecondition; accepted keys are retained for at least 24 hours.",
      "in": "header",
      "name": "Idempotency-Key",
      "schema": {
        "description": "Idempotency key. A replay returns the first result; the same key with a different payload fails with FAILED_PRECONDITION; retained at least 24 hours.",
        "title": "Idempotency-Key",
        "type": "string"
      }
    }
  ],
  "requestBody": {
    "content": {
      "application/json": {
        "schema": {
          "$ref": "#/components/schemas/CreateImageRequest"
        }
      }
    },
    "required": true
  },
  "responses": {
    "201": {
      "content": {
        "application/json": {
          "schema": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Image"
              },
              {
                "not": {
                  "properties": {
                    "status": {
                      "enum": [
                        "pending",
                        "waitingForPush",
                        "preparing"
                      ]
                    }
                  },
                  "required": [
                    "status"
                  ]
                }
              }
            ]
          }
        }
      },
      "description": "Success",
      "headers": {
        "Cache-Control": {
          "required": true,
          "schema": {
            "const": "no-store",
            "type": "string"
          }
        },
        "ETag": {
          "description": "The etag of the resource this response carries, which the next mutation of it sends as If-Match.",
          "schema": {
            "type": "string"
          }
        }
      }
    },
    "202": {
      "content": {
        "application/json": {
          "schema": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Image"
              },
              {
                "properties": {
                  "status": {
                    "enum": [
                      "pending",
                      "waitingForPush",
                      "preparing"
                    ]
                  }
                },
                "required": [
                  "status"
                ]
              }
            ]
          }
        }
      },
      "description": "Accepted. The resource is still progressing; read it or follow its events until completion.",
      "headers": {
        "Cache-Control": {
          "required": true,
          "schema": {
            "const": "no-store",
            "type": "string"
          }
        },
        "ETag": {
          "description": "The etag of the resource this response carries, which the next mutation of it sends as If-Match.",
          "schema": {
            "type": "string"
          }
        }
      }
    },
    "409": {
      "content": {
        "application/json": {
          "examples": {
            "failedPrecondition": {
              "summary": "The Idempotency-Key was already used with a different payload.",
              "value": {
                "code": "failedPrecondition",
                "message": "The Idempotency-Key was already used with a different payload."
              }
            }
          },
          "schema": {
            "$ref": "#/components/schemas/Error"
          }
        }
      },
      "description": "Creation conflicts with an existing resource (ALREADY_EXISTS).\n\nThe Idempotency-Key was already used with a different payload.",
      "headers": {
        "Cache-Control": {
          "required": true,
          "schema": {
            "enum": [
              "no-store"
            ],
            "type": "string"
          }
        }
      }
    },
    "default": {
      "content": {
        "application/json": {
          "schema": {
            "$ref": "#/components/schemas/Error"
          }
        }
      },
      "description": "The structured Error body identifies the failure with a stable code and optional typed details.",
      "headers": {
        "Cache-Control": {
          "required": true,
          "schema": {
            "enum": [
              "no-store"
            ],
            "type": "string"
          }
        }
      }
    }
  },
  "security": [
    {
      "bearer": []
    }
  ],
  "summary": "CreateImage registers pushed OCI content or disk content derived from a snapshot or sandbox.",
  "tags": [
    "Images"
  ],
  "x-sbx-authenticated-only": false,
  "x-sbx-conditional-permissions": [],
  "x-sbx-error-responses": [
    {
      "code": "FAILED_PRECONDITION",
      "description": "The Idempotency-Key was already used with a different payload."
    }
  ],
  "x-sbx-plane": "control",
  "x-sbx-required-permissions": [
    "imagesWrite"
  ],
  "x-sbx-resource-response": {
    "$ref": "#/components/schemas/Image"
  },
  "x-sbx-serving-surface": "management"
}
```

## Referenced schemas

- [#/components/schemas/CreateImageRequest](/reference/api/sandboxes/latest/schemas/CreateImageRequest/)

- [#/components/schemas/Error](/reference/api/sandboxes/latest/schemas/Error/)

- [#/components/schemas/Image](/reference/api/sandboxes/latest/schemas/Image/)




