# updateOrgAccessTokenRequest


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

API version: 2-beta



Schema constraints and annotations:

```json
{
  "examples": [
    {
      "description": "Token for CI/CD pipeline",
      "is_active": true,
      "label": "My organization token",
      "resources": [
        {
          "path": "myorg/myrepo",
          "scopes": [
            "scope-image-pull"
          ],
          "type": "TYPE_REPO"
        }
      ]
    }
  ],
  "properties": {
    "description": {
      "description": "Description of the access token",
      "example": "Token for CI/CD pipeline",
      "type": "string"
    },
    "is_active": {
      "description": "Whether the token is active",
      "example": true,
      "type": "boolean"
    },
    "label": {
      "description": "Label for the access token",
      "example": "My organization token",
      "type": "string"
    },
    "resources": {
      "description": "Resources this token has access to",
      "items": {
        "$ref": "#/components/schemas/orgAccessTokenResource"
      },
      "type": "array"
    }
  },
  "type": "object"
}
```



