Skip to content

Latest commit

 

History

History
62 lines (45 loc) · 837 Bytes

Reminders.md

File metadata and controls

62 lines (45 loc) · 837 Bytes

Slack Reminders API Methods (Go Back)

This PHP class provides methods to interact with the Slack Reminders API. Below are instructions on how to use each method.

Method: add

add(
    string $text,
    string $time,
    ?array $recurrence = null,
    ?string $teamId = null,
    ?string $userId = null
)

Create a new reminder.

Method: complete

complete(
    string $reminder,
    ?string $teamId = null
)

Mark a reminder as complete.

Method: delete

delete(
    string $reminder,
    ?string $teamId = null
)

Delete a reminder.

Method: info

info(
    string $reminder,
    ?string $teamId = null
)

Retrieve information about a reminder.

Method: list

list(
    string $reminder,
    ?string $teamId = null
)

List reminders for a user.