Deal

Storage for deals.

export interface TableDeal
{
    id?: number;
    created_at: number;
    updated_at?: number;
    last_sync_at?: number;
    uuid: string;
    name: string;
    info_image_path?: string;
    info_tag?: string;
    info_category?: string;
    info_description?: string;
    info_valuation?: number;
    info_raising_amount?: number;
    info_cliff_and_vesting?: string;
    info_fee: number;
    info_token_price: number;
    url_website?: string;
    url_twitter?: string;
    url_pitchdeck?: string;
    internal_note?: string;
    deal_fundrised_token_addr: string;
    deal_min_allocation: number;
    deal_max_allocation: number;
    deal_total_allocation: number;
    deal_active_discovery: boolean;
    deal_active_fundrising_registered: boolean;
    deal_active_fundrising_everyone: boolean;
    deal_active_refunding: boolean;
}

Get all available communities

GET https://launchpad.angelssquad.com/api/deal

Allowance: [Admin]

Get community by id

GET https://launchpad.angelssquad.com/api/deal/:id

Allowance: [Admin]

Path Parameters

Name
Type
Description

id

number

Create/Edit deal by uuid

PUT https://launchpad.angelssquad.com/api/deal

Allowance: [Admin]

Request Body

Name
Type
Description

TableCommunity

json

Delete deal by uuid

DELETE https://launchpad.angelssquad.com/api/deal/uuid

Allowance: [Admin]

Query Parameters

Name
Type
Description

uuid*

String

Community UUID

Last updated