# List
Get the details of application staging area.
# HTTP Request:
GET https://api.serveravatar.com/organizations/{organization}/servers/{server}/applications/{application}/staging-area-detail
# Curl Request example:
curl --request GET \
--url "https://api.serveravatar.com/organizations/5/servers/15/applications/88/staging-area-detail" \
--header 'content-type: application/json' \
--header 'Authorization: <YOUR API TOKEN>'
# Response:
# Site-clone List:
- 200 (Ok)
{
"is_availabel_staging_area": true,
"migrationServer": "54.90.174.225",
"application_name": "stagingareatest",
"application_domain": "siteexample.tk",
"database_name": "wordpressite_staging"
}
# Organization Not Found
- 404 (Not Found)
{
"message": "Organization not found!"
}
# Application Not Found
- 404 (Not Found)
{
"message": "Application not found!"
}
# Server Not Found
- 404 (Not Found)
{
"message": "Server not found!"
}
# Server Error
- 500 (Internal Server Error)
{
"message": "Something went really wrong!"
}