Favicon

You are here: Home > API Reference > Store Published Applications > Create new published application in store

POST /organizations/:organizationId/stores/:storeId/pubApps

Required Permission: mad.store.publishedApplication.create

Creates a new published application entry in the store catalog with comprehensive configuration including application selection, unique URL slug, build filter criteria, security and access control settings, audience targeting, custom branding, terms and conditions, geographic restrictions, and distribution options enabling administrators to publish applications to specific user groups with tailored presentation and access controls.

POST
/v1/organizations/:organizationId/stores/:storeId/pubApps
Copy to clipboard

Create new published application in store

Required Permission: mad.store.publishedApplication.create

Creates a new published application entry in the store catalog with comprehensive configuration including application selection, unique URL slug, build filter criteria, security and access control settings, audience targeting, custom branding, terms and conditions, geographic restrictions, and distribution options enabling administrators to publish applications to specific user groups with tailored presentation and access controls.

Request

Add parameter in header authorization
Example: Authorization: Bearer <token>
organizationId string
required
Match pattern: ^(([a-fA-F0-9]{24})|([a-zA-Z0-9\\-]{3,}))$
storeId number
required
Body Params application/json
application string required
Source application identifier connecting published distribution entry to originating application for build inheritance, metadata synchronization, and version tracking.
Match pattern: ^[a-fA-F0-9]{24}$
slug string required
URL-friendly unique identifier enabling direct public access through shareable distribution links and human-readable routing throughout platform.
≤ 128 characters · ≥ 3 characters · Match pattern: ^[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]$
security string required
password
tags array optional
Categorization labels enabling publication filtering, searching, and organization within store catalog for administrative management and discovery.
groups array [array] optional
Nested group name arrays implementing audience-based access control where inner arrays represent OR conditions and outer array represents AND conditions for complex permission rules.
activateUserAudiences any optional
Boolean flag enabling user audience-based targeting controlling whether userAudienceMap configuration actively restricts or targets distribution to specific user segments.
userAudienceMap array [object] optional
User audience assignment array linking publication to specific audience segments with notification preferences and access rules for targeted distribution management.
id string required
Match pattern: ^[a-fA-F0-9]{24}$
notifyNewBuildsProcessed boolean required
notAllowed boolean optional
userAudience object optional
id string required
Match pattern: ^[a-fA-F0-9]{24}$
name string required
description string optional
organizationId string required
Match pattern: ^[a-fA-F0-9]{24}$
applicationId string optional
Match pattern: ^[a-fA-F0-9]{24}$
application object optional
filter object required
usersScope string required
org app
allowedApplicationIds array [string] required
allowedApplications array [object] required
counts object required
updatedAt string optional
createdAt string optional
password string required
≤ 128 characters · ≥ 8 characters
visibility string required
Publication discoverability status determining whether distribution appears in public store listings or requires direct URL access for hidden channels.
active inactive unlisted
showHistory any optional
Boolean flag controlling whether historical build versions displayed to users on distribution page enabling version browsing and rollback access.
filter object required
Build selection configuration defining automated deployment strategy and version targeting for distribution channel using tags, git references, or explicit build assignments.
type string required
Filter strategy identifier determining build selection mechanism including specific builds, tag-based filtering, git tag matching, git branch tracking, or automatic latest version distribution.
last builds gitBranch gitTag tag
value any optional
Filter criterion value used with selection strategy such as tag name, git reference, or build identifier depending on configured filter type for version targeting.
ios any optional
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
android any optional
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
macos any optional
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
windows any optional
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
builds array [object] optional
Platform-specific build entries array containing build references and metadata for each platform in multi-platform distribution enabling cross-platform version management.
buildPlatform string required
≤ 128 characters
id string required
Match pattern: ^[a-fA-F0-9]{24}$
configuration object optional
Presentation customization settings enabling white-label distribution with custom application information and visual branding for end-user facing interfaces.
application object optional
name string optional
≤ 128 characters
description string optional
≤ 1000 characters
branding object optional
logo any optional
primaryColor any optional
buttonColor any optional
useAppIcon any optional
terms object optional
Terms and conditions configuration requiring user acceptance before download including activation status and full legal text for compliance requirements.
active any optional
text any optional
showDevInfo any optional
Boolean flag determining whether developer information and technical build metadata displayed to end users for transparency and troubleshooting.
allowedCountries array [string] optional
ISO country code array implementing geographic whitelist restricting access to specific countries for compliance with regional licensing and distribution rights.
blockedCountries array [string] optional
ISO country code array implementing geographic blacklist preventing access from specific countries for export control and regulatory compliance.
hideAttachedFiles any optional
Boolean flag controlling visibility of supplementary files and resources on distribution page determining what additional materials users can access.
expirationDate any optional
ISO 8601 timestamp defining when publication becomes unavailable for download enabling time-limited distributions, beta programs, and promotional campaigns.
{
    "application": "string",
    "slug": "string",
    "security": "password",
    "tags": [
        "string"
    ],
    "groups": [
        [
            "string"
        ]
    ],
    "activateUserAudiences": true,
    "userAudienceMap": [
        {
            "id": "string",
            "notifyNewBuildsProcessed": true,
            "notAllowed": true,
            "userAudience": {
                "id": "string",
                "name": "string",
                "description": "string",
                "organizationId": "string",
                "applicationId": "string",
                "application": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string"
                },
                "filter": {
                    "groups": [
                        [
                            "string"
                        ]
                    ],
                    "emails": [
                        "[email protected]"
                    ]
                },
                "usersScope": "org",
                "allowedApplicationIds": [
                    "string"
                ],
                "allowedApplications": [
                    {
                        "id": "string",
                        "name": "string",
                        "slug": "string",
                        "picture": "string"
                    }
                ],
                "counts": {
                    "pubApps": 0,
                    "members": 0,
                    "unmatchedEmails": 0
                },
                "updatedAt": "string",
                "createdAt": "string"
            }
        }
    ],
    "password": "string",
    "visibility": "active",
    "showHistory": true,
    "filter": {
        "type": "last",
        "value": "string",
        "ios": "string",
        "android": "string",
        "macos": "string",
        "windows": "string",
        "builds": [
            {
                "buildPlatform": "string",
                "id": "string"
            }
        ]
    },
    "configuration": {
        "application": {
            "name": "string",
            "description": "string"
        },
        "branding": {
            "logo": "string",
            "primaryColor": "string",
            "buttonColor": "string",
            "useAppIcon": true
        }
    },
    "terms": {
        "active": true,
        "text": "string"
    },
    "showDevInfo": true,
    "allowedCountries": [
        "AF"
    ],
    "blockedCountries": [
        "AF"
    ],
    "hideAttachedFiles": true,
    "expirationDate": "string"
}

Responses

200 Response application/json
status boolean required
data object required
id string required
Unique identifier for published application instance representing specific distribution channel configuration used throughout platform for referencing publication in analytics, access control, and management operations.
Match pattern: ^[a-fA-F0-9]{24}$
store string required
Store catalog identifier linking publication to specific app distribution portal for multi-store organizational separation and branded distribution channel management.
Match pattern: ^[a-fA-F0-9]{24}$
application string required
Source application identifier connecting published distribution entry to originating application for build inheritance, metadata synchronization, and version tracking.
Match pattern: ^[a-fA-F0-9]{24}$
filter object required
Build selection configuration defining automated deployment strategy and version targeting for distribution channel using tags, git references, or explicit build assignments.
type string required
Filter strategy identifier determining build selection mechanism including specific builds, tag-based filtering, git tag matching, git branch tracking, or automatic latest version distribution.
last builds gitBranch gitTag tag
value any required
Filter criterion value used with selection strategy such as tag name, git reference, or build identifier depending on configured filter type for version targeting.
ios any required
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
android any required
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
macos any required
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
windows any required
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
build object required
Legacy single-platform build object containing complete metadata for backward compatibility with simple distributions or null when using multi-platform builds array.
iosBuild object required
Complete iOS build object with version metadata, file details, and download information for currently selected iOS distribution or null when no iOS build configured.
androidBuild object required
Complete Android build object with version metadata, file details, and download information for currently selected Android distribution or null when no Android build configured.
macosBuild object required
Complete macOS build object with version metadata, file details, and download information for currently selected macOS distribution or null when no macOS build configured.
windowsBuild object required
Complete Windows build object with version metadata, file details, and download information for currently selected Windows distribution or null when no Windows build configured.
builds array [object] required
Platform-specific build entries array containing build references and metadata for each platform in multi-platform distribution enabling cross-platform version management.
tags array [array] required
Nested tag arrays defining build selection logic where inner arrays represent OR conditions and outer array represents AND conditions for complex tag-based deployment strategies.
applicationInfo object required
Source application metadata snapshot providing identifying information and default branding inherited from originating application for administrative reference.
id string required
Unique identifier for this resource enabling reference and lookup operations across the platform.
Match pattern: ^[a-fA-F0-9]{24}$
slug string required
URL-friendly unique identifier used in public URLs and routing throughout the platform.
≤ 128 characters
name string required
Human-readable display name for identification in administrative interfaces and user-facing displays.
≤ 128 characters
picture any required
Image URL for visual representation including logos, icons, or thumbnails displayed in interfaces.
slug string required
URL-friendly unique identifier enabling direct public access through shareable distribution links and human-readable routing throughout platform.
≤ 128 characters · ≥ 3 characters · Match pattern: ^[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]$
configuration object optional
Presentation customization settings enabling white-label distribution with custom application information and visual branding for end-user facing interfaces.
application object optional
branding object optional
security string required
Access control level determining authentication requirements for distribution portal including public access, login requirement, or password protection for controlled distribution.
public password logged
tags array required
Categorization labels enabling publication filtering, searching, and organization within store catalog for administrative management and discovery.
groups array [array] required
Nested group name arrays implementing audience-based access control where inner arrays represent OR conditions and outer array represents AND conditions for complex permission rules.
activateUserAudiences any required
Boolean flag enabling user audience-based targeting controlling whether userAudienceMap configuration actively restricts or targets distribution to specific user segments.
userAudienceMap array [object] required
User audience assignment array linking publication to specific audience segments with notification preferences and access rules for targeted distribution management.
id string required
Match pattern: ^[a-fA-F0-9]{24}$
notifyNewBuildsProcessed boolean required
notAllowed boolean optional
userAudience object optional
password any required
Access password required when security level set to password-protected or empty string for public and logged-in access levels.
visibility string required
Publication discoverability status determining whether distribution appears in public store listings or requires direct URL access for hidden channels.
active inactive unlisted
showHistory any required
Boolean flag controlling whether historical build versions displayed to users on distribution page enabling version browsing and rollback access.
showDevInfo any required
Boolean flag determining whether developer information and technical build metadata displayed to end users for transparency and troubleshooting.
distributionUrl string required
Complete public-facing URL where users access published application for installation and updates constructed from store domain and publication slug.
≤ 256 characters
terms object optional
Terms and conditions configuration requiring user acceptance before download including activation status and full legal text for compliance requirements.
active any required
text any required
counts object required
otpUsers number optional
createdBy string required
User object containing identifier and metadata for creator of published application entry for audit trail and administrative tracking.
Match pattern: ^[a-fA-F0-9]{24}$
updatedAt string required
ISO 8601 timestamp indicating last modification of publication record used for tracking configuration changes and synchronization purposes.
{
    "status": true,
    "data": {
        "id": "string",
        "store": "string",
        "application": "string",
        "filter": {
            "type": "last",
            "value": "string",
            "ios": "string",
            "android": "string",
            "macos": "string",
            "windows": "string",
            "build": {
                "id": "string",
                "organizationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string",
                    "createdBy": "string",
                    "branding": {
                        "logo": "string",
                        "picture": "string",
                        "primaryColor": "string"
                    },
                    "store": {
                        "customDomain": "string"
                    },
                    "configuration": {
                        "storageProvider": "string"
                    }
                },
                "status": "pending",
                "tags": [
                    "string"
                ],
                "versionName": "string",
                "application": "string",
                "applicationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string"
                },
                "changelog": "string",
                "file": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "fileSimulator": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "iconFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "info": {
                    "icon": "string",
                    "ios": {
                        "plist": {
                            "CFBundleName": "string",
                            "CFBundleDisplayName": "string",
                            "CFBundleVersion": "string",
                            "CFBundleShortVersionString": "string",
                            "CFBundleIdentifier": "string",
                            "CFBundleSupportedPlatforms": [
                                "string"
                            ],
                            "MinimumOSVersion": "string",
                            "CFBundleIcons": [
                                "string"
                            ],
                            "UIDeviceFamily": [
                                "string"
                            ]
                        },
                        "mobileprovision": {
                            "TeamIdentifier": "string",
                            "ProvisionsAllDevices": true,
                            "ProvisionedDevices": "string",
                            "TeamName": "string",
                            "ExpirationDate": "string",
                            "signingType": "appStore"
                        }
                    },
                    "android": {
                        "versionCode": "string",
                        "versionName": "string",
                        "platformBuildVersionCode": "string",
                        "platformBuildVersionName": "string",
                        "packageName": "string",
                        "minSDKVersion": "string",
                        "targetSdkVersion": "string",
                        "icon": "string",
                        "productName": "string",
                        "managedConfigurations": [
                            {
                                "key": "string",
                                "title": "string",
                                "description": "string",
                                "restrictionType": "NULL",
                                "defaultValue": "string",
                                "entries": [
                                    "string"
                                ],
                                "entryValues": [
                                    "string"
                                ],
                                "minValue": 0,
                                "maxValue": 0,
                                "visible": true
                            }
                        ]
                    },
                    "pkg": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "MinimumOSVersion": "string",
                        "relatedPkgs": [
                            {
                                "distribution": {
                                    "id": "string",
                                    "active": "string",
                                    "auth": "string",
                                    "installKBytes": "string",
                                    "onConclusion": "string",
                                    "onConclusionScript": "string",
                                    "version": "string",
                                    "archiveKBytes": "string",
                                    "packageIdentifier": "string",
                                    "text": "string"
                                },
                                "plistInfo": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string"
                                },
                                "iconFile": "string"
                            }
                        ]
                    },
                    "app": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "CFBundlePackageType": "string",
                        "LSMinimumSystemVersion": "string"
                    },
                    "msi": {
                        "productCode": "string",
                        "productVersion": "string",
                        "productName": "string",
                        "manufacturer": "string"
                    },
                    "exe": {
                        "fileSize": "string",
                        "fileVersionNumber": "string",
                        "fileOS": "string",
                        "fileDescription": "string",
                        "fileVersion": "string",
                        "originalFileName": "string",
                        "productName": "string",
                        "productVersion": "string",
                        "companyName": "string"
                    },
                    "msixbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "appxbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "msix": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "appx": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "scripts": {
                        "preInstall": "string",
                        "postInstall": "string"
                    },
                    "package": {
                        "name": "string",
                        "version": "string"
                    }
                },
                "size": 0,
                "processTime": 0,
                "queuedTime": 0,
                "processedVersionName": "string",
                "versionCode": "string",
                "error": "string",
                "errorCode": "string",
                "os": "ios",
                "buildPlatform": "string",
                "deployer": {
                    "name": "string",
                    "info": {
                        "commitMessage": "string",
                        "commit": "string",
                        "branch": "string",
                        "triggerTimestamp": "string",
                        "buildUrl": "string",
                        "ciUrl": "string",
                        "repositoryUrl": "string",
                        "buildNumber": "string",
                        "tag": "string"
                    }
                },
                "notifications": {
                    "notifyCollaborators": true,
                    "notifyEmployees": true,
                    "message": "string",
                    "language": "es",
                    "filter": [
                        [
                            "string"
                        ]
                    ]
                },
                "uploadedBy": {
                    "id": "string",
                    "email": "[email protected]",
                    "firstName": "string",
                    "lastName": "string",
                    "picture": "string"
                },
                "originalExtension": "string",
                "storageProvider": {
                    "id": "string",
                    "name": "string",
                    "region": "string",
                    "config": "string",
                    "provider": "string"
                },
                "processLogs": [
                    {
                        "dateMs": 0,
                        "message": "string"
                    }
                ],
                "files": [
                    {
                        "id": "string",
                        "type": "aab",
                        "description": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "metadata": {}
                    }
                ],
                "originalFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "extraFiles": [
                    {
                        "target": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        }
                    }
                ],
                "metadata": {},
                "buildProcessor": {
                    "provider": "string",
                    "runName": "string",
                    "runId": "string"
                },
                "counts": {
                    "downloads": {},
                    "downloadByDay": {},
                    "downloadsByMonth": {}
                },
                "externalFileUrl": "string",
                "disabled": true,
                "extension": "string",
                "hasEmmJson": true,
                "defaultScripts": {
                    "preInstall": "string",
                    "postInstall": "string",
                    "audit": "string",
                    "enforce": "string",
                    "runner": "string"
                },
                "updatedAt": "string",
                "createdAt": "string"
            },
            "iosBuild": {
                "id": "string",
                "organizationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string",
                    "createdBy": "string",
                    "branding": {
                        "logo": "string",
                        "picture": "string",
                        "primaryColor": "string"
                    },
                    "store": {
                        "customDomain": "string"
                    },
                    "configuration": {
                        "storageProvider": "string"
                    }
                },
                "status": "pending",
                "tags": [
                    "string"
                ],
                "versionName": "string",
                "application": "string",
                "applicationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string"
                },
                "changelog": "string",
                "file": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "fileSimulator": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "iconFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "info": {
                    "icon": "string",
                    "ios": {
                        "plist": {
                            "CFBundleName": "string",
                            "CFBundleDisplayName": "string",
                            "CFBundleVersion": "string",
                            "CFBundleShortVersionString": "string",
                            "CFBundleIdentifier": "string",
                            "CFBundleSupportedPlatforms": [
                                "string"
                            ],
                            "MinimumOSVersion": "string",
                            "CFBundleIcons": [
                                "string"
                            ],
                            "UIDeviceFamily": [
                                "string"
                            ]
                        },
                        "mobileprovision": {
                            "TeamIdentifier": "string",
                            "ProvisionsAllDevices": true,
                            "ProvisionedDevices": "string",
                            "TeamName": "string",
                            "ExpirationDate": "string",
                            "signingType": "appStore"
                        }
                    },
                    "android": {
                        "versionCode": "string",
                        "versionName": "string",
                        "platformBuildVersionCode": "string",
                        "platformBuildVersionName": "string",
                        "packageName": "string",
                        "minSDKVersion": "string",
                        "targetSdkVersion": "string",
                        "icon": "string",
                        "productName": "string",
                        "managedConfigurations": [
                            {
                                "key": "string",
                                "title": "string",
                                "description": "string",
                                "restrictionType": "NULL",
                                "defaultValue": "string",
                                "entries": [
                                    "string"
                                ],
                                "entryValues": [
                                    "string"
                                ],
                                "minValue": 0,
                                "maxValue": 0,
                                "visible": true
                            }
                        ]
                    },
                    "pkg": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "MinimumOSVersion": "string",
                        "relatedPkgs": [
                            {
                                "distribution": {
                                    "id": "string",
                                    "active": "string",
                                    "auth": "string",
                                    "installKBytes": "string",
                                    "onConclusion": "string",
                                    "onConclusionScript": "string",
                                    "version": "string",
                                    "archiveKBytes": "string",
                                    "packageIdentifier": "string",
                                    "text": "string"
                                },
                                "plistInfo": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string"
                                },
                                "iconFile": "string"
                            }
                        ]
                    },
                    "app": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "CFBundlePackageType": "string",
                        "LSMinimumSystemVersion": "string"
                    },
                    "msi": {
                        "productCode": "string",
                        "productVersion": "string",
                        "productName": "string",
                        "manufacturer": "string"
                    },
                    "exe": {
                        "fileSize": "string",
                        "fileVersionNumber": "string",
                        "fileOS": "string",
                        "fileDescription": "string",
                        "fileVersion": "string",
                        "originalFileName": "string",
                        "productName": "string",
                        "productVersion": "string",
                        "companyName": "string"
                    },
                    "msixbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "appxbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "msix": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "appx": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "scripts": {
                        "preInstall": "string",
                        "postInstall": "string"
                    },
                    "package": {
                        "name": "string",
                        "version": "string"
                    }
                },
                "size": 0,
                "processTime": 0,
                "queuedTime": 0,
                "processedVersionName": "string",
                "versionCode": "string",
                "error": "string",
                "errorCode": "string",
                "os": "ios",
                "buildPlatform": "string",
                "deployer": {
                    "name": "string",
                    "info": {
                        "commitMessage": "string",
                        "commit": "string",
                        "branch": "string",
                        "triggerTimestamp": "string",
                        "buildUrl": "string",
                        "ciUrl": "string",
                        "repositoryUrl": "string",
                        "buildNumber": "string",
                        "tag": "string"
                    }
                },
                "notifications": {
                    "notifyCollaborators": true,
                    "notifyEmployees": true,
                    "message": "string",
                    "language": "es",
                    "filter": [
                        [
                            "string"
                        ]
                    ]
                },
                "uploadedBy": {
                    "id": "string",
                    "email": "[email protected]",
                    "firstName": "string",
                    "lastName": "string",
                    "picture": "string"
                },
                "originalExtension": "string",
                "storageProvider": {
                    "id": "string",
                    "name": "string",
                    "region": "string",
                    "config": "string",
                    "provider": "string"
                },
                "processLogs": [
                    {
                        "dateMs": 0,
                        "message": "string"
                    }
                ],
                "files": [
                    {
                        "id": "string",
                        "type": "aab",
                        "description": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "metadata": {}
                    }
                ],
                "originalFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "extraFiles": [
                    {
                        "target": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        }
                    }
                ],
                "metadata": {},
                "buildProcessor": {
                    "provider": "string",
                    "runName": "string",
                    "runId": "string"
                },
                "counts": {
                    "downloads": {},
                    "downloadByDay": {},
                    "downloadsByMonth": {}
                },
                "externalFileUrl": "string",
                "disabled": true,
                "extension": "string",
                "hasEmmJson": true,
                "defaultScripts": {
                    "preInstall": "string",
                    "postInstall": "string",
                    "audit": "string",
                    "enforce": "string",
                    "runner": "string"
                },
                "updatedAt": "string",
                "createdAt": "string"
            },
            "androidBuild": {
                "id": "string",
                "organizationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string",
                    "createdBy": "string",
                    "branding": {
                        "logo": "string",
                        "picture": "string",
                        "primaryColor": "string"
                    },
                    "store": {
                        "customDomain": "string"
                    },
                    "configuration": {
                        "storageProvider": "string"
                    }
                },
                "status": "pending",
                "tags": [
                    "string"
                ],
                "versionName": "string",
                "application": "string",
                "applicationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string"
                },
                "changelog": "string",
                "file": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "fileSimulator": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "iconFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "info": {
                    "icon": "string",
                    "ios": {
                        "plist": {
                            "CFBundleName": "string",
                            "CFBundleDisplayName": "string",
                            "CFBundleVersion": "string",
                            "CFBundleShortVersionString": "string",
                            "CFBundleIdentifier": "string",
                            "CFBundleSupportedPlatforms": [
                                "string"
                            ],
                            "MinimumOSVersion": "string",
                            "CFBundleIcons": [
                                "string"
                            ],
                            "UIDeviceFamily": [
                                "string"
                            ]
                        },
                        "mobileprovision": {
                            "TeamIdentifier": "string",
                            "ProvisionsAllDevices": true,
                            "ProvisionedDevices": "string",
                            "TeamName": "string",
                            "ExpirationDate": "string",
                            "signingType": "appStore"
                        }
                    },
                    "android": {
                        "versionCode": "string",
                        "versionName": "string",
                        "platformBuildVersionCode": "string",
                        "platformBuildVersionName": "string",
                        "packageName": "string",
                        "minSDKVersion": "string",
                        "targetSdkVersion": "string",
                        "icon": "string",
                        "productName": "string",
                        "managedConfigurations": [
                            {
                                "key": "string",
                                "title": "string",
                                "description": "string",
                                "restrictionType": "NULL",
                                "defaultValue": "string",
                                "entries": [
                                    "string"
                                ],
                                "entryValues": [
                                    "string"
                                ],
                                "minValue": 0,
                                "maxValue": 0,
                                "visible": true
                            }
                        ]
                    },
                    "pkg": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "MinimumOSVersion": "string",
                        "relatedPkgs": [
                            {
                                "distribution": {
                                    "id": "string",
                                    "active": "string",
                                    "auth": "string",
                                    "installKBytes": "string",
                                    "onConclusion": "string",
                                    "onConclusionScript": "string",
                                    "version": "string",
                                    "archiveKBytes": "string",
                                    "packageIdentifier": "string",
                                    "text": "string"
                                },
                                "plistInfo": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string"
                                },
                                "iconFile": "string"
                            }
                        ]
                    },
                    "app": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "CFBundlePackageType": "string",
                        "LSMinimumSystemVersion": "string"
                    },
                    "msi": {
                        "productCode": "string",
                        "productVersion": "string",
                        "productName": "string",
                        "manufacturer": "string"
                    },
                    "exe": {
                        "fileSize": "string",
                        "fileVersionNumber": "string",
                        "fileOS": "string",
                        "fileDescription": "string",
                        "fileVersion": "string",
                        "originalFileName": "string",
                        "productName": "string",
                        "productVersion": "string",
                        "companyName": "string"
                    },
                    "msixbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "appxbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "msix": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "appx": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "scripts": {
                        "preInstall": "string",
                        "postInstall": "string"
                    },
                    "package": {
                        "name": "string",
                        "version": "string"
                    }
                },
                "size": 0,
                "processTime": 0,
                "queuedTime": 0,
                "processedVersionName": "string",
                "versionCode": "string",
                "error": "string",
                "errorCode": "string",
                "os": "ios",
                "buildPlatform": "string",
                "deployer": {
                    "name": "string",
                    "info": {
                        "commitMessage": "string",
                        "commit": "string",
                        "branch": "string",
                        "triggerTimestamp": "string",
                        "buildUrl": "string",
                        "ciUrl": "string",
                        "repositoryUrl": "string",
                        "buildNumber": "string",
                        "tag": "string"
                    }
                },
                "notifications": {
                    "notifyCollaborators": true,
                    "notifyEmployees": true,
                    "message": "string",
                    "language": "es",
                    "filter": [
                        [
                            "string"
                        ]
                    ]
                },
                "uploadedBy": {
                    "id": "string",
                    "email": "[email protected]",
                    "firstName": "string",
                    "lastName": "string",
                    "picture": "string"
                },
                "originalExtension": "string",
                "storageProvider": {
                    "id": "string",
                    "name": "string",
                    "region": "string",
                    "config": "string",
                    "provider": "string"
                },
                "processLogs": [
                    {
                        "dateMs": 0,
                        "message": "string"
                    }
                ],
                "files": [
                    {
                        "id": "string",
                        "type": "aab",
                        "description": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "metadata": {}
                    }
                ],
                "originalFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "extraFiles": [
                    {
                        "target": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        }
                    }
                ],
                "metadata": {},
                "buildProcessor": {
                    "provider": "string",
                    "runName": "string",
                    "runId": "string"
                },
                "counts": {
                    "downloads": {},
                    "downloadByDay": {},
                    "downloadsByMonth": {}
                },
                "externalFileUrl": "string",
                "disabled": true,
                "extension": "string",
                "hasEmmJson": true,
                "defaultScripts": {
                    "preInstall": "string",
                    "postInstall": "string",
                    "audit": "string",
                    "enforce": "string",
                    "runner": "string"
                },
                "updatedAt": "string",
                "createdAt": "string"
            },
            "macosBuild": {
                "id": "string",
                "organizationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string",
                    "createdBy": "string",
                    "branding": {
                        "logo": "string",
                        "picture": "string",
                        "primaryColor": "string"
                    },
                    "store": {
                        "customDomain": "string"
                    },
                    "configuration": {
                        "storageProvider": "string"
                    }
                },
                "status": "pending",
                "tags": [
                    "string"
                ],
                "versionName": "string",
                "application": "string",
                "applicationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string"
                },
                "changelog": "string",
                "file": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "fileSimulator": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "iconFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "info": {
                    "icon": "string",
                    "ios": {
                        "plist": {
                            "CFBundleName": "string",
                            "CFBundleDisplayName": "string",
                            "CFBundleVersion": "string",
                            "CFBundleShortVersionString": "string",
                            "CFBundleIdentifier": "string",
                            "CFBundleSupportedPlatforms": [
                                "string"
                            ],
                            "MinimumOSVersion": "string",
                            "CFBundleIcons": [
                                "string"
                            ],
                            "UIDeviceFamily": [
                                "string"
                            ]
                        },
                        "mobileprovision": {
                            "TeamIdentifier": "string",
                            "ProvisionsAllDevices": true,
                            "ProvisionedDevices": "string",
                            "TeamName": "string",
                            "ExpirationDate": "string",
                            "signingType": "appStore"
                        }
                    },
                    "android": {
                        "versionCode": "string",
                        "versionName": "string",
                        "platformBuildVersionCode": "string",
                        "platformBuildVersionName": "string",
                        "packageName": "string",
                        "minSDKVersion": "string",
                        "targetSdkVersion": "string",
                        "icon": "string",
                        "productName": "string",
                        "managedConfigurations": [
                            {
                                "key": "string",
                                "title": "string",
                                "description": "string",
                                "restrictionType": "NULL",
                                "defaultValue": "string",
                                "entries": [
                                    "string"
                                ],
                                "entryValues": [
                                    "string"
                                ],
                                "minValue": 0,
                                "maxValue": 0,
                                "visible": true
                            }
                        ]
                    },
                    "pkg": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "MinimumOSVersion": "string",
                        "relatedPkgs": [
                            {
                                "distribution": {
                                    "id": "string",
                                    "active": "string",
                                    "auth": "string",
                                    "installKBytes": "string",
                                    "onConclusion": "string",
                                    "onConclusionScript": "string",
                                    "version": "string",
                                    "archiveKBytes": "string",
                                    "packageIdentifier": "string",
                                    "text": "string"
                                },
                                "plistInfo": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string"
                                },
                                "iconFile": "string"
                            }
                        ]
                    },
                    "app": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "CFBundlePackageType": "string",
                        "LSMinimumSystemVersion": "string"
                    },
                    "msi": {
                        "productCode": "string",
                        "productVersion": "string",
                        "productName": "string",
                        "manufacturer": "string"
                    },
                    "exe": {
                        "fileSize": "string",
                        "fileVersionNumber": "string",
                        "fileOS": "string",
                        "fileDescription": "string",
                        "fileVersion": "string",
                        "originalFileName": "string",
                        "productName": "string",
                        "productVersion": "string",
                        "companyName": "string"
                    },
                    "msixbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "appxbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "msix": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "appx": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "scripts": {
                        "preInstall": "string",
                        "postInstall": "string"
                    },
                    "package": {
                        "name": "string",
                        "version": "string"
                    }
                },
                "size": 0,
                "processTime": 0,
                "queuedTime": 0,
                "processedVersionName": "string",
                "versionCode": "string",
                "error": "string",
                "errorCode": "string",
                "os": "ios",
                "buildPlatform": "string",
                "deployer": {
                    "name": "string",
                    "info": {
                        "commitMessage": "string",
                        "commit": "string",
                        "branch": "string",
                        "triggerTimestamp": "string",
                        "buildUrl": "string",
                        "ciUrl": "string",
                        "repositoryUrl": "string",
                        "buildNumber": "string",
                        "tag": "string"
                    }
                },
                "notifications": {
                    "notifyCollaborators": true,
                    "notifyEmployees": true,
                    "message": "string",
                    "language": "es",
                    "filter": [
                        [
                            "string"
                        ]
                    ]
                },
                "uploadedBy": {
                    "id": "string",
                    "email": "[email protected]",
                    "firstName": "string",
                    "lastName": "string",
                    "picture": "string"
                },
                "originalExtension": "string",
                "storageProvider": {
                    "id": "string",
                    "name": "string",
                    "region": "string",
                    "config": "string",
                    "provider": "string"
                },
                "processLogs": [
                    {
                        "dateMs": 0,
                        "message": "string"
                    }
                ],
                "files": [
                    {
                        "id": "string",
                        "type": "aab",
                        "description": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "metadata": {}
                    }
                ],
                "originalFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "extraFiles": [
                    {
                        "target": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        }
                    }
                ],
                "metadata": {},
                "buildProcessor": {
                    "provider": "string",
                    "runName": "string",
                    "runId": "string"
                },
                "counts": {
                    "downloads": {},
                    "downloadByDay": {},
                    "downloadsByMonth": {}
                },
                "externalFileUrl": "string",
                "disabled": true,
                "extension": "string",
                "hasEmmJson": true,
                "defaultScripts": {
                    "preInstall": "string",
                    "postInstall": "string",
                    "audit": "string",
                    "enforce": "string",
                    "runner": "string"
                },
                "updatedAt": "string",
                "createdAt": "string"
            },
            "windowsBuild": {
                "id": "string",
                "organizationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string",
                    "createdBy": "string",
                    "branding": {
                        "logo": "string",
                        "picture": "string",
                        "primaryColor": "string"
                    },
                    "store": {
                        "customDomain": "string"
                    },
                    "configuration": {
                        "storageProvider": "string"
                    }
                },
                "status": "pending",
                "tags": [
                    "string"
                ],
                "versionName": "string",
                "application": "string",
                "applicationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string"
                },
                "changelog": "string",
                "file": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "fileSimulator": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "iconFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "info": {
                    "icon": "string",
                    "ios": {
                        "plist": {
                            "CFBundleName": "string",
                            "CFBundleDisplayName": "string",
                            "CFBundleVersion": "string",
                            "CFBundleShortVersionString": "string",
                            "CFBundleIdentifier": "string",
                            "CFBundleSupportedPlatforms": [
                                "string"
                            ],
                            "MinimumOSVersion": "string",
                            "CFBundleIcons": [
                                "string"
                            ],
                            "UIDeviceFamily": [
                                "string"
                            ]
                        },
                        "mobileprovision": {
                            "TeamIdentifier": "string",
                            "ProvisionsAllDevices": true,
                            "ProvisionedDevices": "string",
                            "TeamName": "string",
                            "ExpirationDate": "string",
                            "signingType": "appStore"
                        }
                    },
                    "android": {
                        "versionCode": "string",
                        "versionName": "string",
                        "platformBuildVersionCode": "string",
                        "platformBuildVersionName": "string",
                        "packageName": "string",
                        "minSDKVersion": "string",
                        "targetSdkVersion": "string",
                        "icon": "string",
                        "productName": "string",
                        "managedConfigurations": [
                            {
                                "key": "string",
                                "title": "string",
                                "description": "string",
                                "restrictionType": "NULL",
                                "defaultValue": "string",
                                "entries": [
                                    "string"
                                ],
                                "entryValues": [
                                    "string"
                                ],
                                "minValue": 0,
                                "maxValue": 0,
                                "visible": true
                            }
                        ]
                    },
                    "pkg": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "MinimumOSVersion": "string",
                        "relatedPkgs": [
                            {
                                "distribution": {
                                    "id": "string",
                                    "active": "string",
                                    "auth": "string",
                                    "installKBytes": "string",
                                    "onConclusion": "string",
                                    "onConclusionScript": "string",
                                    "version": "string",
                                    "archiveKBytes": "string",
                                    "packageIdentifier": "string",
                                    "text": "string"
                                },
                                "plistInfo": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string"
                                },
                                "iconFile": "string"
                            }
                        ]
                    },
                    "app": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "CFBundlePackageType": "string",
                        "LSMinimumSystemVersion": "string"
                    },
                    "msi": {
                        "productCode": "string",
                        "productVersion": "string",
                        "productName": "string",
                        "manufacturer": "string"
                    },
                    "exe": {
                        "fileSize": "string",
                        "fileVersionNumber": "string",
                        "fileOS": "string",
                        "fileDescription": "string",
                        "fileVersion": "string",
                        "originalFileName": "string",
                        "productName": "string",
                        "productVersion": "string",
                        "companyName": "string"
                    },
                    "msixbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "appxbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "msix": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "appx": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "scripts": {
                        "preInstall": "string",
                        "postInstall": "string"
                    },
                    "package": {
                        "name": "string",
                        "version": "string"
                    }
                },
                "size": 0,
                "processTime": 0,
                "queuedTime": 0,
                "processedVersionName": "string",
                "versionCode": "string",
                "error": "string",
                "errorCode": "string",
                "os": "ios",
                "buildPlatform": "string",
                "deployer": {
                    "name": "string",
                    "info": {
                        "commitMessage": "string",
                        "commit": "string",
                        "branch": "string",
                        "triggerTimestamp": "string",
                        "buildUrl": "string",
                        "ciUrl": "string",
                        "repositoryUrl": "string",
                        "buildNumber": "string",
                        "tag": "string"
                    }
                },
                "notifications": {
                    "notifyCollaborators": true,
                    "notifyEmployees": true,
                    "message": "string",
                    "language": "es",
                    "filter": [
                        [
                            "string"
                        ]
                    ]
                },
                "uploadedBy": {
                    "id": "string",
                    "email": "[email protected]",
                    "firstName": "string",
                    "lastName": "string",
                    "picture": "string"
                },
                "originalExtension": "string",
                "storageProvider": {
                    "id": "string",
                    "name": "string",
                    "region": "string",
                    "config": "string",
                    "provider": "string"
                },
                "processLogs": [
                    {
                        "dateMs": 0,
                        "message": "string"
                    }
                ],
                "files": [
                    {
                        "id": "string",
                        "type": "aab",
                        "description": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "metadata": {}
                    }
                ],
                "originalFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "extraFiles": [
                    {
                        "target": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        }
                    }
                ],
                "metadata": {},
                "buildProcessor": {
                    "provider": "string",
                    "runName": "string",
                    "runId": "string"
                },
                "counts": {
                    "downloads": {},
                    "downloadByDay": {},
                    "downloadsByMonth": {}
                },
                "externalFileUrl": "string",
                "disabled": true,
                "extension": "string",
                "hasEmmJson": true,
                "defaultScripts": {
                    "preInstall": "string",
                    "postInstall": "string",
                    "audit": "string",
                    "enforce": "string",
                    "runner": "string"
                },
                "updatedAt": "string",
                "createdAt": "string"
            },
            "builds": [
                {
                    "buildPlatform": "string",
                    "id": "string",
                    "build": {
                        "id": "string",
                        "organizationInfo": {
                            "id": "string",
                            "name": "string",
                            "slug": "string",
                            "picture": "string",
                            "createdBy": "string",
                            "branding": {
                                "logo": "string",
                                "picture": "string",
                                "primaryColor": "string"
                            },
                            "store": {
                                "customDomain": "string"
                            },
                            "configuration": {
                                "storageProvider": "string"
                            }
                        },
                        "status": "pending",
                        "tags": [
                            "string"
                        ],
                        "versionName": "string",
                        "application": "string",
                        "applicationInfo": {
                            "id": "string",
                            "name": "string",
                            "slug": "string",
                            "picture": "string"
                        },
                        "changelog": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "fileSimulator": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "iconFile": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "info": {
                            "icon": "string",
                            "ios": {
                                "plist": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string",
                                    "CFBundleIcons": [
                                        "string"
                                    ],
                                    "UIDeviceFamily": [
                                        "string"
                                    ]
                                },
                                "mobileprovision": {
                                    "TeamIdentifier": "string",
                                    "ProvisionsAllDevices": true,
                                    "ProvisionedDevices": "string",
                                    "TeamName": "string",
                                    "ExpirationDate": "string",
                                    "signingType": "appStore"
                                }
                            },
                            "android": {
                                "versionCode": "string",
                                "versionName": "string",
                                "platformBuildVersionCode": "string",
                                "platformBuildVersionName": "string",
                                "packageName": "string",
                                "minSDKVersion": "string",
                                "targetSdkVersion": "string",
                                "icon": "string",
                                "productName": "string",
                                "managedConfigurations": [
                                    {
                                        "key": "string",
                                        "title": "string",
                                        "description": "string",
                                        "restrictionType": "NULL",
                                        "defaultValue": "string",
                                        "entries": [
                                            "string"
                                        ],
                                        "entryValues": [
                                            "string"
                                        ],
                                        "minValue": 0,
                                        "maxValue": 0,
                                        "visible": true
                                    }
                                ]
                            },
                            "pkg": {
                                "CFBundleName": "string",
                                "CFBundleDisplayName": "string",
                                "CFBundleVersion": "string",
                                "CFBundleShortVersionString": "string",
                                "CFBundleIdentifier": "string",
                                "CFBundleSupportedPlatforms": [
                                    "string"
                                ],
                                "MinimumOSVersion": "string",
                                "relatedPkgs": [
                                    {
                                        "distribution": {
                                            "id": "string",
                                            "active": "string",
                                            "auth": "string",
                                            "installKBytes": "string",
                                            "onConclusion": "string",
                                            "onConclusionScript": "string",
                                            "version": "string",
                                            "archiveKBytes": "string",
                                            "packageIdentifier": "string",
                                            "text": "string"
                                        },
                                        "plistInfo": {
                                            "CFBundleName": "string",
                                            "CFBundleDisplayName": "string",
                                            "CFBundleVersion": "string",
                                            "CFBundleShortVersionString": "string",
                                            "CFBundleIdentifier": "string",
                                            "CFBundleSupportedPlatforms": [
                                                "string"
                                            ],
                                            "MinimumOSVersion": "string"
                                        },
                                        "iconFile": "string"
                                    }
                                ]
                            },
                            "app": {
                                "CFBundleName": "string",
                                "CFBundleDisplayName": "string",
                                "CFBundleVersion": "string",
                                "CFBundleShortVersionString": "string",
                                "CFBundleIdentifier": "string",
                                "CFBundleSupportedPlatforms": [
                                    "string"
                                ],
                                "CFBundlePackageType": "string",
                                "LSMinimumSystemVersion": "string"
                            },
                            "msi": {
                                "productCode": "string",
                                "productVersion": "string",
                                "productName": "string",
                                "manufacturer": "string"
                            },
                            "exe": {
                                "fileSize": "string",
                                "fileVersionNumber": "string",
                                "fileOS": "string",
                                "fileDescription": "string",
                                "fileVersion": "string",
                                "originalFileName": "string",
                                "productName": "string",
                                "productVersion": "string",
                                "companyName": "string"
                            },
                            "msixbundle": {
                                "applicationsData": [
                                    {
                                        "arch": "string",
                                        "fileName": "string",
                                        "size": "string",
                                        "version": "string"
                                    }
                                ],
                                "packageName": "string",
                                "version": "string"
                            },
                            "appxbundle": {
                                "applicationsData": [
                                    {
                                        "arch": "string",
                                        "fileName": "string",
                                        "size": "string",
                                        "version": "string"
                                    }
                                ],
                                "packageName": "string",
                                "version": "string"
                            },
                            "msix": {
                                "displayName": "string",
                                "publisherDisplayName": "string",
                                "version": "string",
                                "arch": "string",
                                "name": "string"
                            },
                            "appx": {
                                "displayName": "string",
                                "publisherDisplayName": "string",
                                "version": "string",
                                "arch": "string",
                                "name": "string"
                            },
                            "scripts": {
                                "preInstall": "string",
                                "postInstall": "string"
                            },
                            "package": {
                                "name": "string",
                                "version": "string"
                            }
                        },
                        "size": 0,
                        "processTime": 0,
                        "queuedTime": 0,
                        "processedVersionName": "string",
                        "versionCode": "string",
                        "error": "string",
                        "errorCode": "string",
                        "os": "ios",
                        "buildPlatform": "string",
                        "deployer": {
                            "name": "string",
                            "info": {
                                "commitMessage": "string",
                                "commit": "string",
                                "branch": "string",
                                "triggerTimestamp": "string",
                                "buildUrl": "string",
                                "ciUrl": "string",
                                "repositoryUrl": "string",
                                "buildNumber": "string",
                                "tag": "string"
                            }
                        },
                        "notifications": {
                            "notifyCollaborators": true,
                            "notifyEmployees": true,
                            "message": "string",
                            "language": "es",
                            "filter": [
                                [
                                    "string"
                                ]
                            ]
                        },
                        "uploadedBy": {
                            "id": "string",
                            "email": "[email protected]",
                            "firstName": "string",
                            "lastName": "string",
                            "picture": "string"
                        },
                        "originalExtension": "string",
                        "storageProvider": {
                            "id": "string",
                            "name": "string",
                            "region": "string",
                            "config": "string",
                            "provider": "string"
                        },
                        "processLogs": [
                            {
                                "dateMs": 0,
                                "message": "string"
                            }
                        ],
                        "files": [
                            {
                                "id": "string",
                                "type": "aab",
                                "description": "string",
                                "file": {
                                    "originalName": "string",
                                    "mimetype": "string",
                                    "size": 0,
                                    "bucket": "string",
                                    "key": "string",
                                    "location": "string",
                                    "region": "string",
                                    "storageProviderId": "string",
                                    "checksum": "string",
                                    "updatedAt": "string",
                                    "createdAt": "string"
                                },
                                "metadata": {}
                            }
                        ],
                        "originalFile": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "extraFiles": [
                            {
                                "target": "string",
                                "file": {
                                    "originalName": "string",
                                    "mimetype": "string",
                                    "size": 0,
                                    "bucket": "string",
                                    "key": "string",
                                    "location": "string",
                                    "region": "string",
                                    "storageProviderId": "string",
                                    "checksum": "string",
                                    "updatedAt": "string",
                                    "createdAt": "string"
                                }
                            }
                        ],
                        "metadata": {},
                        "buildProcessor": {
                            "provider": "string",
                            "runName": "string",
                            "runId": "string"
                        },
                        "counts": {
                            "downloads": {},
                            "downloadByDay": {},
                            "downloadsByMonth": {}
                        },
                        "externalFileUrl": "string",
                        "disabled": true,
                        "extension": "string",
                        "hasEmmJson": true,
                        "defaultScripts": {
                            "preInstall": "string",
                            "postInstall": "string",
                            "audit": "string",
                            "enforce": "string",
                            "runner": "string"
                        },
                        "updatedAt": "string",
                        "createdAt": "string"
                    }
                }
            ],
            "tags": [
                [
                    "string"
                ]
            ]
        },
        "applicationInfo": {
            "id": "string",
            "slug": "string",
            "name": "string",
            "picture": "string"
        },
        "slug": "string",
        "configuration": {
            "application": {
                "name": "string",
                "description": "string"
            },
            "branding": {
                "logo": "string",
                "primaryColor": "string",
                "buttonColor": "string",
                "useAppIcon": true
            }
        },
        "security": "public",
        "tags": [
            "string"
        ],
        "groups": [
            [
                "string"
            ]
        ],
        "activateUserAudiences": true,
        "userAudienceMap": [
            {
                "id": "string",
                "notifyNewBuildsProcessed": true,
                "notAllowed": true,
                "userAudience": {
                    "id": "string",
                    "name": "string",
                    "description": "string",
                    "organizationId": "string",
                    "applicationId": "string",
                    "application": {
                        "id": "string",
                        "name": "string",
                        "slug": "string",
                        "picture": "string"
                    },
                    "filter": {
                        "groups": [
                            [
                                "string"
                            ]
                        ],
                        "emails": [
                            "[email protected]"
                        ]
                    },
                    "usersScope": "org",
                    "allowedApplicationIds": [
                        "string"
                    ],
                    "allowedApplications": [
                        {
                            "id": "string",
                            "name": "string",
                            "slug": "string",
                            "picture": "string"
                        }
                    ],
                    "counts": {
                        "pubApps": 0,
                        "members": 0,
                        "unmatchedEmails": 0
                    },
                    "updatedAt": "string",
                    "createdAt": "string"
                }
            }
        ],
        "password": "string",
        "visibility": "active",
        "showHistory": true,
        "showDevInfo": true,
        "distributionUrl": "string",
        "terms": {
            "active": true,
            "text": "string"
        },
        "counts": {
            "otpUsers": 0
        },
        "createdBy": "string",
        "updatedAt": "string"
    }
}
400 Response application/json
status boolean optional
false
error object optional
code number optional
5195
message string optional
UserAudience not belong to application
{
    "status": false,
    "error": {
        "code": 5020,
        "message": "Operation not supported by your billing plan"
    }
}
401 Response application/json
status boolean optional
false
error object optional
code number optional
4001
message string optional
Unauthorized
{
    "status": false,
    "error": {
        "code": 4002,
        "message": "No auth token"
    }
}
404 Response application/json
status boolean optional
false
error object optional
code number optional
3001
message string optional
Entity not found
{
    "status": false,
    "error": {
        "code": 3001,
        "message": "Entity not found"
    }
}