For the complete documentation index, see llms.txt. This page is also available as Markdown.

List website processes

Lists active and recently completed asynchronous processes for an Agency Plan website.

List website processes

get

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_uidstringRequired

Agency Plan website UID

Example: zpwlGlp19
Responses
200

Success response

application/json
idstringOptional

Process ID

Example: 0193b6d4-fabb-70e0-8ea4-cfe060a45898
typestringOptional

Process type

Example: backup_generation
statusstring · enumOptional

Process status

Example: runningPossible values:
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?