Request
Your API key: b2co_your_api_key
The unique identifier of the mobile app to update
Display name for the mobile app (1-255 characters)
iOS App Parameters
iOS bundle identifier (e.g., com.yourcompany.yourapp)
App Store URL to redirect users without the app installed
App Store ID for the app (numeric string)
Minimum iOS version required (e.g., “14.0”)
Android App Parameters
Android package name (e.g., com.yourcompany.yourapp)
Play Store URL to redirect users without the app installed
Minimum Android API level required (e.g., “21”)
Partial Updates: You can update any subset of fields. Only provide the fields you want to change.
The platform cannot be changed after creation.
Response
Indicates if the request was successful
The updated mobile app object
Unique identifier for the mobile app
Display name of the mobile app
Platform type: IOS or ANDROID
iOS bundle identifier (iOS apps only)
App Store fallback URL (iOS apps only)
App Store ID (iOS apps only)
Minimum iOS version required (iOS apps only)
Android package name (Android apps only)
Play Store fallback URL (Android apps only)
Minimum Android version required (Android apps only)
ISO 8601 timestamp when the app was created
ISO 8601 timestamp when the app was last updated
ISO 8601 timestamp of the response
curl -X PUT "https://api.bit2connect.com/1.0/mobile-apps/550e8400-e29b-41d4-a716-446655440000" \
-H "X-API-KEY: b2co_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"name": "Updated App Name"
}'
{
"success": true,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Updated App Name",
"platform": "IOS",
"bundleId": "com.mycompany.myapp",
"appStoreFallback": "https://apps.apple.com/app/id987654321",
"appStoreId": "987654321",
"iosMinVersion": "15.0",
"packageName": null,
"playStoreFallback": null,
"androidMinVersion": null,
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T12:00:00Z"
},
"timestamp": "2024-01-15T12:00:00Z"
}