Apps [parse.App]

Using Parse-Server?

The self-hosted Parse-Server does not support the Apps module.

.get

Get an App.

Parameters:

  • applicationId
  parse.request( parse.App.get, "AppId" )
  :header("X-Parse-Email","<PARSE-ACCOUNT-EMAIL>")
  :header("X-Parse-Password","<PARSE-ACCOUNT-PASSWORD>")
  :response(cb)

rest/guide#apps-fetching-apps

.getAll

Get all Apps.

  parse.request( parse.App.getAll )
  :header("X-Parse-Email","<PARSE-ACCOUNT-EMAIL>")
  :header("X-Parse-Password","<PARSE-ACCOUNT-PASSWORD>")
  :response(cb)

rest/guide#apps-fetching-apps

.create

Create a new App.

parse.request( parse.App.create )
:header("X-Parse-Email", "<PARSE-ACCOUNT-EMAIL>")
:header("X-Parse-Password", "<PARSE-ACCOUNT-PASSWORD>")
:set("appName", "my new app")
:set("clientClassCreationEnabled", false)
:response(cb)

rest/guide#apps-creating-apps

.update

Updates an App.

Parameters:

  • applicationId
  parse.request( parse.App.update, "AppId" )
  :header("X-Parse-Email", "<PARSE-ACCOUNT-EMAIL>")
  :header("X-Parse-Password", "<PARSE-ACCOUNT-PASSWORD>")
  :set("appName", "updated app name")
  :set("clientClassCreationEnabled", true)
  :response(cb)

See the Parse REST link below for more detailed options.

rest/guide#apps-updating-apps

Deleting Apps

You are only able to delete Apps from your Parse.com dashboard.