Interface UriLinkCreateResponse

Response from creating a URI link (includes the one-time token and launch URLs).

interface UriLinkCreateResponse {
    directUri: string;
    guildId: string;
    launchUrl: string;
    link: UriLink;
    links: UriLink[];
    ok: boolean;
    token: string;
}

Properties

directUri: string

Full launch URL for the StarComms client (starcomms://launch?...).

guildId: string
launchUrl: string

Alternative launch URL (web-based).

link: UriLink
links: UriLink[]
ok: boolean
token: string

One-time secret token — only returned on create.