Frontend API
Retrieve all domains associated with the organization. Requires organization membership.
cURL
curl --request GET \ --url https://{deploymentHost}/organizations/{id}/domains \ --cookie __session=
200
domains_list
{ "status": 200, "message": "", "data": [ { "id": "domain_123456789", "domain": "acme.com", "is_verified": true, "verification_token": null, "verified_at": "2024-01-10T15:30:00Z", "created_at": "2024-01-10T15:00:00Z" }, { "id": "domain_987654321", "domain": "staging.acme.com", "is_verified": false, "verification_token": "wacht_verify_abc123def456", "verified_at": null, "created_at": "2024-01-15T10:00:00Z" } ], "session": { "signin_attempts": [], "signins": [ { "id": "signin_987654321", "user_id": "user_456789123", "created_at": "2024-01-01T12:00:00Z" } ], "signup_attempts": [], "active_signin": { "id": "signin_987654321", "user_id": "user_456789123", "created_at": "2024-01-01T12:00:00Z" } }, "errors": []}
Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.
Organization ID
Domains retrieved successfully
HTTP status code
Response message (empty for success)
Response data (can be any type)
Show child attributes
Array of error objects (empty for success)