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>" } '
Documentation IndexFetch the complete documentation index at: https://learn.nexudus.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
Use this file to discover all available pages before exploring further.
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)
Was this page helpful?