Authorizations
Path Parameters
Example:
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",
"hibernation_enabled": true,
"hibernate_after_seconds": 900,
"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"
}
],
"internal_connections": [
{
"id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
"app": {
"id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
"name": "unique-name"
},
"database": {
"id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
"name": "unique-db-name"
}
}
]
}
}Fetch detailed information about a specific application by its unique identifier.
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",
"hibernation_enabled": true,
"hibernate_after_seconds": 900,
"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"
}
],
"internal_connections": [
{
"id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
"app": {
"id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
"name": "unique-name"
},
"database": {
"id": "54fb80af-576c-4fdc-ba4f-b596c83f15a1",
"name": "unique-db-name"
}
}
]
}
}Show child attributes
Was this page helpful?