グループのアプリ一覧を取得する
GET
https://deploygate.com/api/organizations/{ORGANIZATION_NAME}/apps
グループのアプリ一覧を取得します。
Path Params
Name | Type | Required | Description |
---|---|---|---|
ORGANIZATION_NAME | string | true | グループ名 |
Example
curl \
-X GET \
--url "https://deploygate.com/api/organizations/${ORGANIZATION_NAME}/apps" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}"
Result 200
{
"error": false,
"applications": [
{
"name": "DeployGate",
"package_name": "com.deploygate",
"labels": {
"ja": "DeployGate"
},
"os_name": "Android",
"current_revision": 4,
"icon_url": "https://example.com/path/to/icon.png",
"owner": {
"type": "Organization",
"name": "ExampleOrganization",
"description": "This is an organization",
"url": "https://deploygate.com/organizations/ExampleOrganization",
"enterprise": {
"type": "Enterprise",
"name": "ExampleEnterprise",
"display_name": "Example Enterprise Inc.",
"url": "https://deploygate.com/enterprises/ExampleEnterprise",
"icon_url": "https://deploygate.com/img/icons/enterprise-default-thumb.png"
}
},
"url": "https://deploygate.com/organizations/ExampleOrganization/platforms/Android/apps/com.deploygate"
}
]
}