When automating status page provisioning via the StatusPal API or Terraform provider, there's no way to programmatically retrieve the member invite link for a status page. Current Behavior: - The invite link (https://{subdomain}. statuspal.io/registrations/new?sp_access={token} ) contains an sp_access token that is only visible in the StatusPal web UI - The API endpoints (GET /api/v2/status_pages/{subdomain}) do not return this token - The Terraform provider (statuspal_status_page resource) does not expose this value Requested Feature: Add the sp_access token or full invite URL to the API response when fetching status page details, so it can be: 1. Retrieved via the REST API (GET /api/v2/status_pages/{subdomain}) 2. Exposed as an attribute in the Terraform provider (statuspal_status_page.invite_link or statuspal_status_page.sp_access_token) Use Case: We're automating status page creation for multiple tenants using Terraform. After creating each status page, we need to share the invite link with tenant administrators so they can register and manage incidents. Currently, this requires manual lookup in the UI for each status page, breaking our automation workflow. Suggested API Response Addition: { "status_page": { "subdomain": "example", "name": "Example Status", "invite_url": " https://example.statuspal.io/registrations/new?sp_access=abc123 ", "sp_access_token": "abc123", ... } }