curl --request GET \
--url https://api-staging.boost.xyz/boosts/accesslists \
--header 'Authorization: Bearer <token>'
{
"accesslists": [
{
"id": "<string>",
"name": "<string>",
"memberCount": 123,
"createdAt": "<string>",
"icon": "<string>"
}
]
}
Sort and filter with a query of accesslists for a given user id.
curl --request GET \
--url https://api-staging.boost.xyz/boosts/accesslists \
--header 'Authorization: Bearer <token>'
{
"accesslists": [
{
"id": "<string>",
"name": "<string>",
"memberCount": 123,
"createdAt": "<string>",
"icon": "<string>"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Special characters like :&|'!()<> are not allowed in the search terms.
"totalMembers"
ASC
, DESC
Success
The response is of type object
.