curl --request GET \
--url https://api.other.page/v1/account/communities \
--header 'Authorization: Bearer <token>'
{
"total": 123,
"perPage": 123,
"page": 123,
"results": [
{
"role": "owner",
"addMethod": "manual",
"confirmedAt": "2023-11-07T05:31:56Z",
"community": {
"id": "<string>",
"name": "<string>",
"shortName": "<string>",
"description": "<string>",
"twitter": "<string>",
"discord": "<string>",
"youtube": "<string>",
"website": "<string>",
"logo": "<string>",
"type": "<string>",
"requestLevel": "open",
"approvedAt": "2023-11-07T05:31:56Z",
"verifiedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}
]
}
Retrieve a list of an accounts communities.
Required scope: communities.read
.
curl --request GET \
--url https://api.other.page/v1/account/communities \
--header 'Authorization: Bearer <token>'
{
"total": 123,
"perPage": 123,
"page": 123,
"results": [
{
"role": "owner",
"addMethod": "manual",
"confirmedAt": "2023-11-07T05:31:56Z",
"community": {
"id": "<string>",
"name": "<string>",
"shortName": "<string>",
"description": "<string>",
"twitter": "<string>",
"discord": "<string>",
"youtube": "<string>",
"website": "<string>",
"logo": "<string>",
"type": "<string>",
"requestLevel": "open",
"approvedAt": "2023-11-07T05:31:56Z",
"verifiedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Page of results to return.
Number of items per page to return. Defaults to 100.
The response is of type object
.