# ProcessAttach


[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.




Schema constraints and annotations:

```json
{
  "additionalProperties": false,
  "description": "Attach selects the process and output resume point.",
  "properties": {
    "name": {
      "description": "name is the complete resource name, in the form processes/{process}.",
      "pattern": "^processes/[^/]+$",
      "type": "string"
    },
    "resumeFrom": {
      "description": "resume_from resumes after a received or published stream_sequence; 0 means from the start. Missing output after this point fails with FAILED_PRECONDITION.",
      "format": "int64",
      "type": [
        "integer",
        "string"
      ]
    }
  },
  "required": [
    "name"
  ],
  "title": "Attach",
  "type": "object"
}
```



