Search License-Assigned Members and Groups
Testing
GET
/spaces/{spaceId}/members/license-assigned
username
.username
: The username of the member or groupcourseId
: The courseId that the license belongs to.type
: The type of assigne to return either profile
or group
.spaceId
: Space Id from which the list of members will be returnedRequest Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.aladia.io/v2/spaces/66479aa5905bfd0cb5377619/members/license-assigned?username=leul&courseId=672d82ad1adbd4482345c9d8&type=profile&limit=50&next=&prev=&sortBy=&sortDirection=asc' \
--header 'apikey: '
Response Response Example
200 - Success
{
"data": [
{
"id": "66d0233c1681058994bce488",
"fullName": "Leul Ejigu",
"picture": null,
"role": "space-owner",
"online": false
}
],
"cursor": {
"next": null,
"prev": null,
"totalItems": 1
}
}
Request
Path Params
spaceId
stringÂ
required
Example:
66479aa5905bfd0cb5377619
Query Params
username
stringÂ
optional
Example:
leul
courseId
stringÂ
required
Example:
672d82ad1adbd4482345c9d8
type
stringÂ
optional
Example:
profile
limit
integerÂ
optional
Default:
50
next
stringÂ
optional
prev
stringÂ
optional
sortBy
stringÂ
optional
sortDirection
enum<string>Â
optional
Allowed values:
ascdesc
Default:
asc
Header Params
apikey
stringÂ
optional
Example:
{{apikey}}
Responses
Modified at 2025-04-10 05:58:50