Public API Reference
Public API details and usage examples for the Members Portal
Creates a contact-level account (non-member) through the public sign-up flow.
cURL
curl --request POST \ --url https://spaces.nexudus.com/api/public/signup/contact \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "FullName": "<string>", "Email": "<string>" } '
POST /api/public/signup/contact Content-Type: application/json { "FullName": "John Visitor", "Email": "john@example.com" }
import endpoints from '@/api/endpoints' await httpClient.post(endpoints.checkout.contact, formData)