# updateOrgAccessTokenResponse


[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
{
  "allOf": [
    {
      "$ref": "#/components/schemas/orgAccessToken"
    },
    {
      "properties": {
        "resources": {
          "description": "Resources this token has access to",
          "items": {
            "$ref": "#/components/schemas/orgAccessTokenResource"
          },
          "type": "array"
        }
      },
      "type": "object"
    }
  ],
  "examples": [
    {
      "created_at": "2022-05-20T00:54:18Z",
      "created_by": "johndoe",
      "expires_at": "2023-05-20T00:54:18Z",
      "id": "a7a5ef25-8889-43a0-8cc7-f2a94268e861",
      "is_active": true,
      "label": "My organization token",
      "last_used_at": "2022-06-15T12:30:45Z",
      "resources": [
        {
          "path": "myorg/myrepo",
          "scopes": [
            "scope-image-pull"
          ],
          "type": "TYPE_REPO"
        }
      ]
    }
  ],
  "type": "object"
}
```



