Community
Storage for community details.
Main community id: aaaaaaaa-35e7-11ee-be56-0242ac120002
export interface TableCommunity
{
id?: number;
uuid: string;
created_at: number;
updated_at?: number;
last_sync_at?: number;
name: string;
internal_note?: string;
image_path?: string;
}
Get all available communities
GET
https://launchpad.angelssquad.com/api/community
Allowance: [Admin]
Get community by ID
GET
https://launchpad.angelssquad.com/api/community/:id
Allowance: [Admin]
Path Parameters
Name
Type
Description
id
number
Create/Edit community by uuid
PUT
https://launchpad.angelssquad.com/api/community
Allowance: [Admin]
Request Body
Name
Type
Description
TableCommunity
json
Delete community by uuid
DELETE
https://launchpad.angelssquad.com/api/community/uuid
Allowance: [Admin]
Query Parameters
Name
Type
Description
uuid*
String
Community UUID
Last updated