@slack/web-api / ConversationsHistoryArguments
Defined in: src/types/request/conversations.ts:93
Channel.IncludeAllMetadata.TokenOverridable.CursorPaginationEnabled.TimelinePaginationEnabled
channel: string;Defined in: src/types/request/conversations.ts:15
ID of conversation.
Channel.channeloptional cursor: string;Defined in: src/types/request/common.ts:16
Paginate through collections of data by setting the cursor parameter to a next_cursor attribute
returned by a previous request's response_metadata.
Default value fetches the first "page" of the collection.
pagination for more detail.
CursorPaginationEnabled.cursoroptional include_all_metadata: boolean;Defined in: src/types/request/conversations.ts:24
Return all metadata associated with messages. Defaults to false.
IncludeAllMetadata.include_all_metadataoptional inclusive: boolean;Defined in: src/types/request/common.ts:28
Include messages with oldest or latest timestamps in results.
Ignored unless either timestamp is specified. Defaults to false.
TimelinePaginationEnabled.inclusiveoptional latest: string;Defined in: src/types/request/common.ts:23
Only messages before this Unix timestamp will be included in results.
TimelinePaginationEnabled.latestoptional limit: number;Defined in: src/types/request/common.ts:9
The maximum number of items to return. Fewer than the requested number of items may be returned,
even if the end of the list hasn't been reached. Must be an integer with a max value of 999. Default is 100.
CursorPaginationEnabled.limitoptional oldest: string;Defined in: src/types/request/common.ts:21
Only messages after this Unix timestamp will be included in results.
TimelinePaginationEnabled.oldestoptional token: string;Defined in: src/types/request/common.ts:43
Overridable authentication token bearing required scopes.
TokenOverridable.token