Member
A member is a contact that has registered an account on the platform.
Returns a list of members.
Authorizations
Query parameters
pageintegerOptionalDefault:
The collection page number
1
Responses
200
Member collection
403
Forbidden
get
GET /members HTTP/1.1
Host: api.glu.io
x-api-key: YOUR_API_KEY
Accept: */*
[
{
"type": "Individual",
"createdAt": "2025-08-20T03:44:53.834Z",
"updatedAt": "2025-08-20T03:44:53.834Z"
}
]
Retrieves a Member resource.
Authorizations
Path parameters
idstringRequired
Member identifier
Responses
200
Member resource
403
Forbidden
404
Not found
get
GET /members/{id} HTTP/1.1
Host: api.glu.io
x-api-key: YOUR_API_KEY
Accept: */*
{
"type": "Individual",
"createdAt": "2025-08-20T03:44:53.834Z",
"updatedAt": "2025-08-20T03:44:53.834Z"
}