Application Processes

Note: Application, Database, and Static Site Hosting will be removed from both MyKinsta and the MyKinsta API on 31 January 2026. Your existing services will continue to run without interruption; however, you will need to manage them through the Sevalla dashboard using your MyKinsta credentials.

After this date, all API endpoints related to Application, Database, and Static Site Hosting will be provided exclusively through the Sevalla API. For more details about this transition, see Sevalla.

The processes endpoint can be used to get more details about an application’s processes, including the type, the start command (labeled entrypoint in the response), and more.

You can obtain the id from the applications/{id} endpoint.

Get process by idDeprecated

Deprecated in favor of Sevalla API docs.

SecuritybearerAuth
Request
path Parameters
id
required
string
Example: 54fb80af-576c-4fdc-ba4f-b596c83f15a1
Responses
200

Response object of application process by ID requests

401

No or invalid API key provided to the request

404

Could not find the application process or the user does not have permissions to retrieve data

500

Error occurred while retrieving application process

get/applications/processes/{id}
Request samples
Response samples
application/json
{
  • "process": {
    }
}

Update process detailsDeprecated

Deprecated in favor of Sevalla API docs.

SecuritybearerAuth
Request
path Parameters
id
required
string
Example: 54fb80af-576c-4fdc-ba4f-b596c83f15a1
Request Body schema: application/json
required
object or object
entrypoint
string

The default start command of the process can be overwritten with entrypoint.

Responses
200

Process updated successfully

401

No or invalid API key provided to the request

500

Error occurred while updating process

put/applications/processes/{id}
Request samples
application/json
{
  • "scaling_strategy": {
    },
  • "entrypoint": "node index.js"
}
Response samples
application/json
{
  • "process": {
    }
}