Log in to WordPress admin automatically

Generate a one-time SSO link to log in directly to wp-admin without a password. The link is time-limited.

Path Parameters

accountId integer · min: 1 required Example

Unique account identifier

Headers

Accept Example
Content-Type Example

Body

required
application/json
installationId string required

WordPress installation ID (e.g., 26_12345)

Responses

200 Successful response
link string
installationId string
POST https://cloud.hostup.se/api/hosting/{accountId}/wordpress-sso
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/hosting/14429/wordpress-sso" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "installationId": "string"
  }'
Response
{
  "link": "string",
  "installationId": "string"
}
Request Body
{
  "installationId": "string"
}