- Preparing search index...
- The search index is not available
Guilded.JS
Methods
listItemCompleteCreate
- listItemCompleteCreate(options): CancelablePromise<void>
-
Parameters
-
options: {
channelId: string;
listItemId: string;
}
-
channelId: string
-
listItemId: string
void
listItemCompleteDelete
- listItemCompleteDelete(options): CancelablePromise<void>
-
Parameters
-
options: {
channelId: string;
listItemId: string;
}
-
channelId: string
-
listItemId: string
void
listItemCreate
- listItemCreate(options): CancelablePromise<{
listItem: ListItemPayload;
}>
-
Parameters
-
options: {
channelId: string;
requestBody: {
message: string | Record<string, any>;
note?: {
content: string | Record<string, any>;
};
};
}
-
channelId: string
-
requestBody: {
message: string | Record<string, any>;
note?: {
content: string | Record<string, any>;
};
}
-
message: string | Record<string, any>
-
Optional
note?: {
content: string | Record<string, any>;
}
-
content: string | Record<string, any>
any Success
listItemDelete
- listItemDelete(options): CancelablePromise<void>
-
Parameters
-
options: {
channelId: string;
listItemId: string;
}
-
channelId: string
-
listItemId: string
void
listItemRead
- listItemRead(options): CancelablePromise<{
listItem: ListItemPayload;
}>
-
Parameters
-
options: {
channelId: string;
listItemId: string;
}
-
channelId: string
-
listItemId: string
any Success
listItemUpdate
- listItemUpdate(options): CancelablePromise<{
listItem: ListItemPayload;
}>
-
Parameters
-
options: {
channelId: string;
listItemId: string;
requestBody: {
message?: string;
note?: null | {
content: string;
};
};
}
-
channelId: string
-
listItemId: string
-
requestBody: {
message?: string;
note?: null | {
content: string;
};
}
-
Optional
message?: string
-
Optional
note?: null | {
content: string;
}
any Success
Complete a list item
Throws
ApiError