GET
/
applications
/
processes
/
{process_id}
curl --request GET \
  --url https://api.sevalla.com/v2/applications/processes/{process_id} \
  --header 'Authorization: Bearer <token>'
{
  "process": {
    "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
    "type": "web",
    "display_name": "Web",
    "instance_count": 1,
    "scaling_strategy": {
      "type": "manual",
      "config": {
        "instanceCount": 8
      }
    },
    "resource_type_name": "s1",
    "entrypoint": "npm start"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

process_id
string
required
Example:

"54fb80af-576c-4fdc-ba4f-b596c83f15a1"

Response

200
application/json

Response object of application process by ID requests

The response is of type object.