Users
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
GET /v1/users HTTP/1.1
Host: api.haloproject.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": "text",
"email": "text",
"created_at": "2025-12-18T17:47:28.918Z",
"consent": true
}
]POST /v1/users HTTP/1.1
Host: api.haloproject.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 97
{
"email": "[email protected]",
"consent": true,
"profile": {
"age": 1,
"gender": "text",
"handedness": "text"
}
}{
"id": "text",
"email": "text",
"created_at": "2025-12-18T17:47:28.918Z",
"consent": true
}GET /v1/users/{userId} HTTP/1.1
Host: api.haloproject.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "text",
"email": "text",
"created_at": "2025-12-18T17:47:28.918Z",
"consent": true
}