provider packages GET /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}
@utdk/github /orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}
Get a package version for an organization
Gets a specific package version in an organization. OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. For more information, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."
package_type path required
The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry (`ghcr.io`) have the type `container`. You can use the type `docker` to find images that were pushed to GitHub's Docker registry (`docker.pkg.github.com`), even if these have now been migrated to the Container registry.
enum: npm, maven, rubygems, docker…
package_name path required
The name of the package.
string
org path required
The organization name. The name is not case sensitive.
string
package_version_id path required
Unique identifier of the package version.
integer

Try it

Authentication
Configure credentials for GitHub v3 REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

packages.getPackageVersionForOrganization
GET/orgs/{org}/packages/{package_type}/{package_name}/versions/{package_version_id}
Gets a specific package version in an organization. OAuth app tokens and personal access tokens (classic) need the `read:packages` scope to use this endpoint. For more information, see "[About permissions for GitHub Packages](https://docs.github.com/packages/learn-github-packages/about-permissions-for-github-packages#permissions-for-repository-scoped-packages)."

Parameters

required

The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry (`ghcr.io`) have the type `container`. You can use the type `docker` to find images that were pushed to GitHub's Docker registry (`docker.pkg.github.com`), even if these have now been migrated to the Container registry.

required

The name of the package.

required

The organization name. The name is not case sensitive.

required

Unique identifier of the package version.

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import github from '@utdk/github';

await github.packages.getPackageVersionForOrganization()