Obtain a List of an Organization’s Apps
If you are using Flexible/Enterprise plan, please visit this page.
GET https://deploygate.com/api/organizations/{ORGANIZATION_NAME}/apps
This process will allow you to obtain a list of an Organization’s apps.
Path Params
| Name | Type | Required | Description | 
|---|---|---|---|
| ORGANIZATION_NAME | string | true | Organization Name | 
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"
    }
  ]
}