Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/api/sections/account.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Account

## `GET /account/settings`
## `GET /:account_slug/account/settings`

Returns the current account.

Expand All @@ -18,7 +18,7 @@ __Response:__

The `auto_postpone_period_in_days` is the account-level default in days (e.g. `30`). Cards are automatically moved to "Not Now" after this period of inactivity. Each board can override this with its own value.

## `GET /account/join_code`
## `GET /:account_slug/account/join_code`

Returns the account's join code for inviting new users. The join code URL can be shared with people to let them join the account.

Expand All @@ -36,7 +36,7 @@ __Response:__

A join code is `active` when `usage_count` is less than `usage_limit`.

## `PUT /account/join_code`
## `PUT /:account_slug/account/join_code`

Updates the join code's usage limit. Requires admin role.

Expand All @@ -58,15 +58,15 @@ __Response:__

Returns `204 No Content` on success.

## `DELETE /account/join_code`
## `DELETE /:account_slug/account/join_code`

Resets the join code, generating a new one and invalidating the old code. Requires admin role.

__Response:__

Returns `204 No Content` on success.

## `PUT /account/entropy`
## `PUT /:account_slug/account/entropy`

Updates the account-level default auto close period. Requires admin role.

Expand Down
4 changes: 2 additions & 2 deletions docs/api/sections/exports.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Possible export statuses are:

Completed export files expire after 24 hours. When that happens, request a new export.

## `POST /account/exports`
## `POST /:account_slug/account/exports`

Starts an account export for the current account. Only account admins and owners can create account exports.

Expand All @@ -26,7 +26,7 @@ Returns `201 Created` with the export object:
}
```

## `GET /account/exports/:id`
## `GET /:account_slug/account/exports/:id`

Returns the status of an account export created by the current user.

Expand Down
2 changes: 1 addition & 1 deletion docs/api/sections/identity.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ __Response:__
}
```

## `PATCH /my/timezone`
## `PATCH /:account_slug/my/timezone`

Updates the current user's timezone. This affects how times are displayed in notification emails.

Expand Down
2 changes: 1 addition & 1 deletion docs/api/sections/pins.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ __Response:__

Returns `204 No Content` on success.

## `GET /my/pins`
## `GET /:account_slug/my/pins`

Returns the current user's pinned cards. This endpoint is not paginated and returns up to 100 cards.

Expand Down