curl --request GET \
--url https://api.example.com/api/projects/{projectId}/releases/{releaseId}/files/{fileId} \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"path": "<string>",
"releaseId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"contentType": "<string>",
"contentHash": "<string>",
"versionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "<string>",
"diffStatus": "added",
"previousReleaseId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"previousId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"content": "<unknown>",
"documentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Retrieve a single file from a release including its content.
curl --request GET \
--url https://api.example.com/api/projects/{projectId}/releases/{releaseId}/files/{fileId} \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"path": "<string>",
"releaseId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"contentType": "<string>",
"contentHash": "<string>",
"versionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "<string>",
"diffStatus": "added",
"previousReleaseId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"previousId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"content": "<unknown>",
"documentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Personal access token is obtained through your profile
Project unique identifier
Release unique identifier
File unique identifier
Release file with content
Release file with content
File unique identifier
File path within the release
ID of the release this file belongs to
File name
MIME type of the file
MD5 hash of the file content
Document version ID
File creation timestamp
Diff status when comparing releases
added, modified, removed, unchanged Previous release ID for modified files
Previous file ID for modified files
File content (decision graph data)
Associated document ID
Was this page helpful?