- Preparing search index...
- The search index is not available
Guilded.JS
Methods
forumTopicCreate
- forumTopicCreate(options): CancelablePromise<{
forumTopic: ForumTopicPayload;
}>
-
Parameters
-
options: {
channelId: string;
requestBody: {
content: string | Record<string, any>;
title: string;
};
}
-
channelId: string
-
requestBody: {
content: string | Record<string, any>;
title: string;
}
-
content: string | Record<string, any>
-
title: string
any Success
forumTopicDelete
- forumTopicDelete(options): CancelablePromise<void>
-
Parameters
-
options: {
channelId: string;
forumTopicId: number;
}
-
channelId: string
-
forumTopicId: number
void
forumTopicLock
- forumTopicLock(options): CancelablePromise<void>
-
Parameters
-
options: {
channelId: string;
forumTopicId: number;
}
-
channelId: string
-
forumTopicId: number
void
forumTopicPin
- forumTopicPin(options): CancelablePromise<void>
-
Parameters
-
options: {
channelId: string;
forumTopicId: number;
}
-
channelId: string
-
forumTopicId: number
void
forumTopicRead
- forumTopicRead(options): CancelablePromise<{
forumTopic: ForumTopicPayload;
}>
-
Parameters
-
options: {
channelId: string;
forumTopicId: number;
}
-
channelId: string
-
forumTopicId: number
any Success
forumTopicReadMany
- forumTopicReadMany(options): CancelablePromise<{
forumTopics: ForumTopicSummaryPayload[];
}>
-
Parameters
-
options: {
before?: string;
channelId: string;
limit?: number;
}
-
Optional
before?: string
-
channelId: string
-
Optional
limit?: number
any Success
forumTopicUnlock
- forumTopicUnlock(options): CancelablePromise<void>
-
Parameters
-
options: {
channelId: string;
forumTopicId: number;
}
-
channelId: string
-
forumTopicId: number
void
forumTopicUnpin
- forumTopicUnpin(options): CancelablePromise<void>
-
Parameters
-
options: {
channelId: string;
forumTopicId: number;
}
-
channelId: string
-
forumTopicId: number
void
forumTopicUpdate
- forumTopicUpdate(options): CancelablePromise<{
forumTopic: ForumTopicPayload;
}>
-
Parameters
-
options: {
channelId: string;
forumTopicId: number;
requestBody: {
content?: string;
title?: string;
};
}
-
channelId: string
-
forumTopicId: number
-
requestBody: {
content?: string;
title?: string;
}
-
Optional
content?: string
-
Optional
title?: string
any Success
Create a topic in a forum
Throws
ApiError