Skip to content

Patch application instance
Stable

Request

Returns application instance

Security
apiKey
Path
enterprise_idstringrequired

A UUID string identifying this enterprise.

emm_idintegerrequired

An integer representing the ID of enterprise.

product_idstringrequired

A string identifying the product.

Body*/*
icon_urlstring, (url)
is_activeboolean(Is Active)
updated_onstring, (date-time)
min_sdk_versioninteger(Minimum SDK Version)
cURL
curl -i -X PATCH \
  'https://develop-api.esper.io/_mock/openapi/v0/enterprise/{enterprise_id}/emm/{emm_id}/product/{product_id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: */*' \
  -d '{
    "icon_url": "string",
    "is_active": true,
    "updated_on": "2019-08-24T14:15:22Z",
    "min_sdk_version": 0
  }'

Responses

successful operation

Bodyapplication/json
idstring, (uuid)
icon_urlstring, (url)
is_activeboolean
titlestring
created_onstring, (date-time)
updated_onstring, (date-time)
min_sdk_versionstring
google_product_idstring
package_namestring, [ 1 .. 255 ] characters
google_enterpriseinteger
Response
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "icon_url": "string", "is_active": true, "title": "string", "created_on": "2019-08-24T14:15:22Z", "updated_on": "2019-08-24T14:15:22Z", "min_sdk_version": "string", "google_product_id": "string", "package_name": "string", "google_enterprise": 0 }