アプリの配布ページ詳細を表示する
GET
https://deploygate.com/api/distributions/{DISTRIBUTION_KEY}
Path Params
Name | Type | Required | Description |
---|---|---|---|
DISTRIBUTION_KEY | string | true | 配布ページのURL最後部に表示される配布ページ固有の値。https://deploygate.com/distributions/ に続いて表示される16進数表記の40文字の値で す。 |
Example
curl \
--url "https://deploygate.com/api/distributions/${DISTRIBUTION_KEY}" \
-H "Authorization: Bearer ${TOKEN}" \
-X GET
Result 200
{
"error": false,
"results": {
"access_key": "${ACCESS_KEY}",
"active": true,
"title": "title of the distribution page",
"release_note": "release note of the distribution page",
"max_members": 10000,
"updated_at": 1671494779,
"flags": {
"norobot": true
},
"extension_type": null,
"application": {
"package_name": "${APP_ID}",
"os_name": "Android",
"name": "DeployGate Sample App",
"version_code": "2",
"version_name": "1.0",
"sdk_version": 14,
"raw_sdk_version": "14",
"target_sdk_version": 33,
"signature": "^[0-9a-f]{40}$",
"fingerprints": [
{
"md5": "^[0-9a-f]{32}$",
"sha1": "^[0-9a-f]{40}$",
"sha256": "^[0-9a-f]{64}$",
"max_sdk_version": 2147483647,
"min_sdk_version": 21
}
],
"lineages": [],
"file_size": 58318,
"md5": "^[0-9a-f]{32}$",
"revision": 1,
"info": "app info",
"updated_at": 1745460120,
"embedded_sdk": {
"artifact_version": "4.10.0",
"is_exact_artifact_version": true,
"supported_features": [
"update_message_of_build",
"serialized_exception",
"logcat_bundle",
"streamed_logcat",
"device_capture"
]
},
"revision_url": "https://deploygate.com/organizations/${OWNER_NAME}/platforms/${PLATFORM_TYPE}/apps/${APP_ID}/binaries/${REVISION_NUMBER}",
"icon": "https://example.com/path/to/icon",
"sdk_abilities": [
"capture",
"replay_capture"
],
"labels": {},
"user": {
"id": 1,
"name": "${OWNER_NAME}",
"description": ""
},
"path": "/organizations/${OWNER_NAME}/platforms/${PLATFORM_TYPE}/apps/${APP_ID}"
},
"display_name": "device display name",
"ip_restriction": null,
"ip_restriction_enable": false
}
}
Result 404
{
"invalid_params": null,
"message": "distribution not found",
"error": true,
"because": "distribution not found",
"error_type": "resource_not_found"
}