List website processes
Lists active and recently completed asynchronous processes for an Agency Plan website.
Lists active and recently completed asynchronous processes for an Agency Plan website.
Each process has a unique ID (for tracking), a type, and a status (running, completed, failed). Poll this endpoint after initiating async operations (SSL setup, backups, cloning) to track progress.
Authorizations
AuthorizationstringRequired
API Token authentication
Path parameters
website_uidstringRequiredExample:
Agency Plan website UID
zpwlGlp19Responses
200
Success response
application/json
idstringOptionalExample:
Process ID
0193b6d4-fabb-70e0-8ea4-cfe060a45898typestringOptionalExample:
Process type
backup_generationstatusstring · enumOptionalExample:
Process status
runningPossible values: 401
Unauthenticated response
application/json
500
Error response
application/json
get/api/agency-hosting/v1/websites/{website_uid}/processes
GET /api/agency-hosting/v1/websites/{website_uid}/processes HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": "0193b6d4-fabb-70e0-8ea4-cfe060a45898",
"type": "backup_generation",
"status": "running"
}
]Last updated
Was this helpful?