POST Managed Application ID Update Method
This method returns the newly updated app.
Syntax:
POST /api/managed_application/<id>/update
Curl
$> curl 'http://localhost:8080/api/managed_application/59081bb444455345403c0000/update' -H 'Authorization: Basic YWRtaW46YWRtaW4=' -H 'Content-Type: application/json' --data-binary '{"name": "NewApp with a new name"}'
Raw Request
POST /api/managed_application/59081bb444455345403c0000/update HTTP/1.1
Host: localhost:8080
Authorization: Basic YWRtaW46YWRtaW4=
Content-Type: application/json
Content-Length: 34
{"name": "NewApp with a new name"}
Write Keys
Parameter | Type |
---|---|
name | String |
version | String |
description | String |
ios_certificate | String |
ios_app_upload_id | Id |
android_app_upload_id | Id |
ios_profile_upload_id | Id |
reset_ios_app | Boolean |
reset_ios_profile | Boolean |
reset_android_app | Boolean |
Response Body
{
"_id": "59081bb444455345403c0000",
"created_at": "2017-05-02T05:40:04.552Z",
"updated_at": "2017-05-02T05:42:01.448Z",
"name": "NewApp with a new name",
"version": null,
"description": null,
"ios_certificate": null,
"android_app_name": null,
"ios_app_name": null,
"ios_profile_name": null
}