Unregister Passenger application

This function unregisters a Passenger application on an account.

Note:

  • This function only unregisters an application. It does not delete the application. You must manually delete the application from your system.
  • When you disable the Web Server role, the system disables this function.
SecurityBasicAuth
Request
query Parameters
name
required
string

The application to unregister.

Example: name=slippers
Responses
200

HTTP Request was successful.

Response Schema: application/json
apiversion
integer

The version of the API.

func
string

The name of the method called.

module
string

The name of the module called.

object
get/PassengerApps/unregister_application
Request samples
uapi --output=jsonpretty \
  --user=username \
  PassengerApps \
  unregister_application \
  name='slippers'
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "unregister_application",
  • "module": "PassengerApps",
  • "result": {
    • "data": null,
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}