Skip to content

Retrieve a recipe snapshot

GET
/api/v4/projects/{id}/packages/conan/v1/conans/{package_name}/{package_version}/{package_username}/{package_channel}

Retrieves a snapshot of the files for a specified Conan recipe. The snapshot is a list of filenames with their associated MD5 hash.

id
required
One of:
string

The ID or URL-encoded path of the project

package_name
required
string

Package name

Example
my-package
package_version
required
string

Package version

Example
1.0
package_username
required
string

Package username

Example
my-group+my-project
package_channel
required
string

Package channel

Example
stable

OK

Media type application/json
object
recipe_snapshot
object
Example
{
"recipe_snapshot": {
"conan_sources.tgz": "eadf19b33f4c3c7e113faabf26e76277"
}
}

Bad Request

Forbidden

Not Found