GET
/
applications
/
{id}
curl --request GET \
  --url https://api.sevalla.com/v2/applications/{id} \
  --header 'Authorization: Bearer <token>'
{
  "app": {
    "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
    "name": "unique-name",
    "display_name": "firstsite",
    "status": "deploymentSuccess",
    "deployments": [
      {
        "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
        "branch": "main",
        "repo_url": "http://example.com",
        "commit_message": "docs: example",
        "created_at": 1667489138845
      }
    ],
    "processes": [
      {
        "id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
        "key": "web"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required
Example:

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

Response

200
application/json

Response object of applications requests

The response is of type object.