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

Get website setup status

Returns the current status of an Agency Plan website setup started via the setups endpoint.

Get website setup status

get

Returns the current status of an Agency Plan website setup started via the setups endpoint.

Poll this endpoint using the setup_uuid returned from the provisioning request until status becomes completed, at which point website_uid identifies the new website.

Authorizations
AuthorizationstringRequired

API Token authentication

Path parameters
order_idintegerRequired

Agency Plan order ID

Example: 123456
setup_uuidstring · uuidRequired

Website setup UUID

Example: 0193b6d4-fabb-70e0-8ea4-cfe060a45898
Responses
200

Success response

application/json
website_uidstring · nullableOptional

UID of the website created by the setup, available once provisioning completes

Example: zpwlGlp19
statusstring · enumOptional

Website setup status

Example: runningPossible values:
get/api/agency-hosting/v1/orders/{order_id}/websites/setups/{setup_uuid}
GET /api/agency-hosting/v1/orders/{order_id}/websites/setups/{setup_uuid} HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "website_uid": "zpwlGlp19",
  "status": "running"
}

Last updated

Was this helpful?