Business — entry 019 of 19
Trello
Trello turns Kanban-style boards, lists, and cards into a scriptable project-management primitive, letting integrations create, move, and archive cards or attach webhooks that fire on board activity. Every account gets a free API key, and requests carry that key plus a short-lived member token as query parameters rather than a full OAuth redirect — a live unauthenticated call to `/1/members/me` confirms this by returning 401 'invalid key' rather than a bearer-token challenge (auth corrected OAuth -> API Key; OAuth1.0a exists only as an alternate authorization flow for third-party apps). Trello's Power-Ups marketplace and countless third-party integrations run on this same public API, available on every pricing tier including the free plan, and CORS is wide open — both the GET and an OPTIONS preflight echo `access-control-allow-origin: *`, resolving the stored 'unknown' value to yes.
GreatAPIs Score
Auth quickstart
- Get a key at the provider
- Send it on every request as a header
Authorization: <key> - The exact header isn't documented — Authorization is a common default; confirm in the provider's docs.
Your key is stored only in this browser (localStorage) and sent directly to the API — never to greatapis.
Endpoints
action19
https://trello.com/docs/api/action/index.html
GET/actions/{idAction}getActionsByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
display | query | no | string |
entities | query | no | string |
fields | query | no | string |
member | query | no | string |
member_fields | query | no | string |
memberCreator | query | no | string |
memberCreator_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/actions/{idAction}updateActionsByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — actions (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/actions/{idAction}deleteActionsByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/boardgetActionsBoardByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/board/{field}getActionsBoardByIdActionByField()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/cardgetActionsCardByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/card/{field}getActionsCardByIdActionByField()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/displaygetActionsDisplayByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/entitiesgetActionsEntitiesByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/listgetActionsListByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/list/{field}getActionsListByIdActionByField()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/membergetActionsMemberByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/member/{field}getActionsMemberByIdActionByField()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/memberCreatorgetActionsMemberCreatorByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/memberCreator/{field}getActionsMemberCreatorByIdActionByField()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/organizationgetActionsOrganizationByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/organization/{field}getActionsOrganizationByIdActionByField()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/actions/{idAction}/textupdateActionsTextByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — actions_text (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/actions/{idAction}/{field}getActionsByIdActionByField()
| Name | In | Required | Type |
|---|---|---|---|
idAction | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
batch1
https://trello.com/docs/api/batch/index.html
GET/batchgetBatch()
| Name | In | Required | Type |
|---|---|---|---|
urls | query | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
board64
https://trello.com/docs/api/board/index.html
POST/boardsaddBoards()
| Name | In | Required | Type |
|---|---|---|---|
key | query | yes | string |
token | query | yes | string |
application/json — boards (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}getBoardsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
actions | query | no | string |
actions_entities | query | no | string |
actions_display | query | no | string |
actions_format | query | no | string |
actions_since | query | no | string |
actions_limit | query | no | string |
action_fields | query | no | string |
action_member | query | no | string |
action_member_fields | query | no | string |
action_memberCreator | query | no | string |
action_memberCreator_fields | query | no | string |
cards | query | no | string |
card_fields | query | no | string |
card_attachments | query | no | string |
card_attachment_fields | query | no | string |
card_checklists | query | no | string |
card_stickers | query | no | string |
boardStars | query | no | string |
labels | query | no | string |
label_fields | query | no | string |
labels_limit | query | no | string |
lists | query | no | string |
list_fields | query | no | string |
memberships | query | no | string |
memberships_member | query | no | string |
memberships_member_fields | query | no | string |
members | query | no | string |
member_fields | query | no | string |
membersInvited | query | no | string |
membersInvited_fields | query | no | string |
checklists | query | no | string |
checklist_fields | query | no | string |
organization | query | no | string |
organization_fields | query | no | string |
organization_memberships | query | no | string |
myPrefs | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}updateBoardsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — boards (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/actionsgetBoardsActionsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
entities | query | no | string |
display | query | no | string |
filter | query | no | string |
fields | query | no | string |
limit | query | no | string |
format | query | no | string |
since | query | no | string |
before | query | no | string |
page | query | no | string |
idModels | query | no | string |
member | query | no | string |
member_fields | query | no | string |
memberCreator | query | no | string |
memberCreator_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/boardStarsgetBoardsBoardStarsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
filter | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/boards/{idBoard}/calendarKey/generateaddBoardsCalendarKeyGenerateByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/cardsgetBoardsCardsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
actions | query | no | string |
attachments | query | no | string |
attachment_fields | query | no | string |
stickers | query | no | string |
members | query | no | string |
member_fields | query | no | string |
checkItemStates | query | no | string |
checklists | query | no | string |
limit | query | no | string |
since | query | no | string |
before | query | no | string |
filter | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/cards/{filter}getBoardsCardsByIdBoardByFilter()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
filter | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/cards/{idCard}getBoardsCardsByIdBoardByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
idCard | path | yes | string |
attachments | query | no | string |
attachment_fields | query | no | string |
actions | query | no | string |
actions_entities | query | no | string |
actions_display | query | no | string |
actions_limit | query | no | string |
action_fields | query | no | string |
action_memberCreator_fields | query | no | string |
members | query | no | string |
member_fields | query | no | string |
checkItemStates | query | no | string |
checkItemState_fields | query | no | string |
labels | query | no | string |
checklists | query | no | string |
checklist_fields | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/checklistsgetBoardsChecklistsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
cards | query | no | string |
card_fields | query | no | string |
checkItems | query | no | string |
checkItem_fields | query | no | string |
filter | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/boards/{idBoard}/checklistsaddBoardsChecklistsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — boards_checklists (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/closedupdateBoardsClosedByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — boards_closed (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/deltasgetBoardsDeltasByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
tags | query | yes | string |
ixLastUpdate | query | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/descupdateBoardsDescByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — boards_desc (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/boards/{idBoard}/emailKey/generateaddBoardsEmailKeyGenerateByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/idOrganizationupdateBoardsIdOrganizationByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — boards_idOrganization (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/labelNames/blueupdateBoardsLabelNamesBlueByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — labelNames_blue (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/labelNames/greenupdateBoardsLabelNamesGreenByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — labelNames_green (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/labelNames/orangeupdateBoardsLabelNamesOrangeByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — labelNames_orange (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/labelNames/purpleupdateBoardsLabelNamesPurpleByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — labelNames_purple (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/labelNames/redupdateBoardsLabelNamesRedByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — labelNames_red (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/labelNames/yellowupdateBoardsLabelNamesYellowByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — labelNames_yellow (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/labelsgetBoardsLabelsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
fields | query | no | string |
limit | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/boards/{idBoard}/labelsaddBoardsLabelsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — boards_labels (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/labels/{idLabel}getBoardsLabelsByIdBoardByIdLabel()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
idLabel | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/listsgetBoardsListsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
cards | query | no | string |
card_fields | query | no | string |
filter | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/boards/{idBoard}/listsaddBoardsListsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — boards_lists (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/lists/{filter}getBoardsListsByIdBoardByFilter()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
filter | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/boards/{idBoard}/markAsViewedaddBoardsMarkAsViewedByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/membersgetBoardsMembersByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
filter | query | no | string |
fields | query | no | string |
activity | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/membersupdateBoardsMembersByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/members/{filter}getBoardsMembersByIdBoardByFilter()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
filter | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/members/{idMember}updateBoardsMembersByIdBoardByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/boards/{idBoard}/members/{idMember}deleteBoardsMembersByIdBoardByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/members/{idMember}/cardsgetBoardsMembersCardsByIdBoardByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
idMember | path | yes | string |
actions | query | no | string |
attachments | query | no | string |
attachment_fields | query | no | string |
members | query | no | string |
member_fields | query | no | string |
checkItemStates | query | no | string |
checklists | query | no | string |
board | query | no | string |
board_fields | query | no | string |
list | query | no | string |
list_fields | query | no | string |
filter | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/membersInvitedgetBoardsMembersInvitedByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/membersInvited/{field}getBoardsMembersInvitedByIdBoardByField()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/membershipsgetBoardsMembershipsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
filter | query | no | string |
member | query | no | string |
member_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/memberships/{idMembership}getBoardsMembershipsByIdBoardByIdMembership()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
idMembership | path | yes | string |
member | query | no | string |
member_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/memberships/{idMembership}updateBoardsMembershipsByIdBoardByIdMembership()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
idMembership | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — boards_memberships (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/myPrefsgetBoardsMyPrefsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/myPrefs/emailPositionupdateBoardsMyPrefsEmailPositionByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — myPrefs_emailPosition (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/myPrefs/idEmailListupdateBoardsMyPrefsIdEmailListByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — myPrefs_idEmailList (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/myPrefs/showListGuideupdateBoardsMyPrefsShowListGuideByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — myPrefs_showListGuide (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/myPrefs/showSidebarupdateBoardsMyPrefsShowSidebarByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — myPrefs_showSidebar (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/myPrefs/showSidebarActivityupdateBoardsMyPrefsShowSidebarActivityByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — myPrefs_showSidebarActivity (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/myPrefs/showSidebarBoardActionsupdateBoardsMyPrefsShowSidebarBoardActionsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — myPrefs_showSidebarBoardActions (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/myPrefs/showSidebarMembersupdateBoardsMyPrefsShowSidebarMembersByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — myPrefs_showSidebarMembers (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/nameupdateBoardsNameByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — boards_name (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/organizationgetBoardsOrganizationByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/organization/{field}getBoardsOrganizationByIdBoardByField()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/boards/{idBoard}/powerUpsaddBoardsPowerUpsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — boards_powerUps (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/boards/{idBoard}/powerUps/{powerUp}deleteBoardsPowerUpsByIdBoardByPowerUp()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
powerUp | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/prefs/backgroundupdateBoardsPrefsBackgroundByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_background (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/prefs/calendarFeedEnabledupdateBoardsPrefsCalendarFeedEnabledByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_calendarFeedEnabled (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/prefs/cardAgingupdateBoardsPrefsCardAgingByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_cardAging (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/prefs/cardCoversupdateBoardsPrefsCardCoversByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_cardCovers (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/prefs/commentsupdateBoardsPrefsCommentsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_comments (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/prefs/invitationsupdateBoardsPrefsInvitationsByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_invitations (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/prefs/permissionLevelupdateBoardsPrefsPermissionLevelByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/prefs/selfJoinupdateBoardsPrefsSelfJoinByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_selfJoin (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/prefs/votingupdateBoardsPrefsVotingByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_voting (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/boards/{idBoard}/subscribedupdateBoardsSubscribedByIdBoard()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — boards_subscribed (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/boards/{idBoard}/{field}getBoardsByIdBoardByField()
| Name | In | Required | Type |
|---|---|---|---|
idBoard | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
card55
https://trello.com/docs/api/card/index.html
POST/cardsaddCards()
| Name | In | Required | Type |
|---|---|---|---|
key | query | yes | string |
token | query | yes | string |
application/json — cards (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}getCardsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
actions | query | no | string |
actions_entities | query | no | string |
actions_display | query | no | string |
actions_limit | query | no | string |
action_fields | query | no | string |
action_memberCreator_fields | query | no | string |
attachments | query | no | string |
attachment_fields | query | no | string |
members | query | no | string |
member_fields | query | no | string |
membersVoted | query | no | string |
memberVoted_fields | query | no | string |
checkItemStates | query | no | string |
checkItemState_fields | query | no | string |
checklists | query | no | string |
checklist_fields | query | no | string |
board | query | no | string |
board_fields | query | no | string |
list | query | no | string |
list_fields | query | no | string |
stickers | query | no | string |
sticker_fields | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}updateCardsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/cards/{idCard}deleteCardsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/actionsgetCardsActionsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
entities | query | no | string |
display | query | no | string |
filter | query | no | string |
fields | query | no | string |
limit | query | no | string |
format | query | no | string |
since | query | no | string |
before | query | no | string |
page | query | no | string |
idModels | query | no | string |
member | query | no | string |
member_fields | query | no | string |
memberCreator | query | no | string |
memberCreator_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/cards/{idCard}/actions/commentsaddCardsActionsCommentsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — actions_comments (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/actions/{idAction}/commentsupdateCardsActionsCommentsByIdCardByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idAction | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_actions_comments (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/cards/{idCard}/actions/{idAction}/commentsdeleteCardsActionsCommentsByIdCardByIdAction()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idAction | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/attachmentsgetCardsAttachmentsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
fields | query | no | string |
filter | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/cards/{idCard}/attachmentsaddCardsAttachmentsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_attachments (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/attachments/{idAttachment}getCardsAttachmentsByIdCardByIdAttachment()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idAttachment | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/cards/{idCard}/attachments/{idAttachment}deleteCardsAttachmentsByIdCardByIdAttachment()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idAttachment | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/boardgetCardsBoardByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/board/{field}getCardsBoardByIdCardByField()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/checkItemStatesgetCardsCheckItemStatesByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/checklist/{idChecklistCurrent}/checkItem/{idCheckItem}updateCardsChecklistCheckItemByIdCardByIdChecklistCurrentByIdCheckItem()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idChecklistCurrent | path | yes | string |
idCheckItem | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_checklist_idChecklistCurrent_checkItem (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/cards/{idCard}/checklist/{idChecklist}/checkItemaddCardsChecklistCheckItemByIdCardByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idChecklist | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_checklist_checkItem (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/cards/{idCard}/checklist/{idChecklist}/checkItem/{idCheckItem}deleteCardsChecklistCheckItemByIdCardByIdChecklistByIdCheckItem()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idChecklist | path | yes | string |
idCheckItem | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/cards/{idCard}/checklist/{idChecklist}/checkItem/{idCheckItem}/convertToCardaddCardsChecklistCheckItemConvertToCardByIdCardByIdChecklistByIdCheckItem()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idChecklist | path | yes | string |
idCheckItem | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/checklist/{idChecklist}/checkItem/{idCheckItem}/nameupdateCardsChecklistCheckItemNameByIdCardByIdChecklistByIdCheckItem()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idChecklist | path | yes | string |
idCheckItem | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_checklist_checkItem_name (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/checklist/{idChecklist}/checkItem/{idCheckItem}/posupdateCardsChecklistCheckItemPosByIdCardByIdChecklistByIdCheckItem()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idChecklist | path | yes | string |
idCheckItem | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_checklist_checkItem_pos (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/checklist/{idChecklist}/checkItem/{idCheckItem}/stateupdateCardsChecklistCheckItemStateByIdCardByIdChecklistByIdCheckItem()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idChecklist | path | yes | string |
idCheckItem | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_checklist_checkItem_state (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/checklistsgetCardsChecklistsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
cards | query | no | string |
card_fields | query | no | string |
checkItems | query | no | string |
checkItem_fields | query | no | string |
filter | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/cards/{idCard}/checklistsaddCardsChecklistsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_checklists (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/cards/{idCard}/checklists/{idChecklist}deleteCardsChecklistsByIdCardByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idChecklist | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/closedupdateCardsClosedByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_closed (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/descupdateCardsDescByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_desc (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/dueupdateCardsDueByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_due (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/idAttachmentCoverupdateCardsIdAttachmentCoverByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_idAttachmentCover (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/idBoardupdateCardsIdBoardByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_idBoard (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/cards/{idCard}/idLabelsaddCardsIdLabelsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_idLabels (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/cards/{idCard}/idLabels/{idLabel}deleteCardsIdLabelsByIdCardByIdLabel()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idLabel | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/idListupdateCardsIdListByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_idList (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/cards/{idCard}/idMembersaddCardsIdMembersByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_idMembers (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/idMembersupdateCardsIdMembersByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_idMembers (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/cards/{idCard}/idMembers/{idMember}deleteCardsIdMembersByIdCardByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/cards/{idCard}/labelsaddCardsLabelsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_labels (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/labelsupdateCardsLabelsByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_labels (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/cards/{idCard}/labels/{color}deleteCardsLabelsByIdCardByColor()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
color | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/listgetCardsListByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/list/{field}getCardsListByIdCardByField()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/cards/{idCard}/markAssociatedNotificationsReadaddCardsMarkAssociatedNotificationsReadByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/membersgetCardsMembersByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/membersVotedgetCardsMembersVotedByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/cards/{idCard}/membersVotedaddCardsMembersVotedByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_membersVoted (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/cards/{idCard}/membersVoted/{idMember}deleteCardsMembersVotedByIdCardByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/nameupdateCardsNameByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_name (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/posupdateCardsPosByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_pos (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/stickersgetCardsStickersByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/cards/{idCard}/stickersaddCardsStickersByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_stickers (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/stickers/{idSticker}getCardsStickersByIdCardByIdSticker()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idSticker | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/stickers/{idSticker}updateCardsStickersByIdCardByIdSticker()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idSticker | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_stickers (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/cards/{idCard}/stickers/{idSticker}deleteCardsStickersByIdCardByIdSticker()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
idSticker | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/cards/{idCard}/subscribedupdateCardsSubscribedByIdCard()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — cards_subscribed (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/cards/{idCard}/{field}getCardsByIdCardByField()
| Name | In | Required | Type |
|---|---|---|---|
idCard | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
checklist16
https://trello.com/docs/api/checklist/index.html
POST/checklistsaddChecklists()
| Name | In | Required | Type |
|---|---|---|---|
key | query | yes | string |
token | query | yes | string |
application/json — checklists (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/checklists/{idChecklist}getChecklistsByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
cards | query | no | string |
card_fields | query | no | string |
checkItems | query | no | string |
checkItem_fields | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/checklists/{idChecklist}updateChecklistsByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — checklists (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/checklists/{idChecklist}deleteChecklistsByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/checklists/{idChecklist}/boardgetChecklistsBoardByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/checklists/{idChecklist}/board/{field}getChecklistsBoardByIdChecklistByField()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/checklists/{idChecklist}/cardsgetChecklistsCardsByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
actions | query | no | string |
attachments | query | no | string |
attachment_fields | query | no | string |
stickers | query | no | string |
members | query | no | string |
member_fields | query | no | string |
checkItemStates | query | no | string |
checklists | query | no | string |
limit | query | no | string |
since | query | no | string |
before | query | no | string |
filter | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/checklists/{idChecklist}/cards/{filter}getChecklistsCardsByIdChecklistByFilter()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
filter | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/checklists/{idChecklist}/checkItemsgetChecklistsCheckItemsByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
filter | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/checklists/{idChecklist}/checkItemsaddChecklistsCheckItemsByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — checklists_checkItems (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/checklists/{idChecklist}/checkItems/{idCheckItem}getChecklistsCheckItemsByIdChecklistByIdCheckItem()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
idCheckItem | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/checklists/{idChecklist}/checkItems/{idCheckItem}deleteChecklistsCheckItemsByIdChecklistByIdCheckItem()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
idCheckItem | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/checklists/{idChecklist}/idCardupdateChecklistsIdCardByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — checklists_idCard (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/checklists/{idChecklist}/nameupdateChecklistsNameByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — checklists_name (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/checklists/{idChecklist}/posupdateChecklistsPosByIdChecklist()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — checklists_pos (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/checklists/{idChecklist}/{field}getChecklistsByIdChecklistByField()
| Name | In | Required | Type |
|---|---|---|---|
idChecklist | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
label8
https://trello.com/docs/api/label/index.html
POST/labelsaddLabels()
| Name | In | Required | Type |
|---|---|---|---|
key | query | yes | string |
token | query | yes | string |
application/json — labels (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/labels/{idLabel}getLabelsByIdLabel()
| Name | In | Required | Type |
|---|---|---|---|
idLabel | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/labels/{idLabel}updateLabelsByIdLabel()
| Name | In | Required | Type |
|---|---|---|---|
idLabel | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — labels (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/labels/{idLabel}deleteLabelsByIdLabel()
| Name | In | Required | Type |
|---|---|---|---|
idLabel | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/labels/{idLabel}/boardgetLabelsBoardByIdLabel()
| Name | In | Required | Type |
|---|---|---|---|
idLabel | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/labels/{idLabel}/board/{field}getLabelsBoardByIdLabelByField()
| Name | In | Required | Type |
|---|---|---|---|
idLabel | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/labels/{idLabel}/colorupdateLabelsColorByIdLabel()
| Name | In | Required | Type |
|---|---|---|---|
idLabel | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — labels_color (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/labels/{idLabel}/nameupdateLabelsNameByIdLabel()
| Name | In | Required | Type |
|---|---|---|---|
idLabel | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — labels_name (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
list17
https://trello.com/docs/api/list/index.html
POST/listsaddLists()
| Name | In | Required | Type |
|---|---|---|---|
key | query | yes | string |
token | query | yes | string |
application/json — lists (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/lists/{idList}getListsByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
cards | query | no | string |
card_fields | query | no | string |
board | query | no | string |
board_fields | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/lists/{idList}updateListsByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — lists (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/lists/{idList}/actionsgetListsActionsByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
entities | query | no | string |
display | query | no | string |
filter | query | no | string |
fields | query | no | string |
limit | query | no | string |
format | query | no | string |
since | query | no | string |
before | query | no | string |
page | query | no | string |
idModels | query | no | string |
member | query | no | string |
member_fields | query | no | string |
memberCreator | query | no | string |
memberCreator_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/lists/{idList}/archiveAllCardsaddListsArchiveAllCardsByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/lists/{idList}/boardgetListsBoardByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/lists/{idList}/board/{field}getListsBoardByIdListByField()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/lists/{idList}/cardsgetListsCardsByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
actions | query | no | string |
attachments | query | no | string |
attachment_fields | query | no | string |
stickers | query | no | string |
members | query | no | string |
member_fields | query | no | string |
checkItemStates | query | no | string |
checklists | query | no | string |
limit | query | no | string |
since | query | no | string |
before | query | no | string |
filter | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/lists/{idList}/cardsaddListsCardsByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — lists_cards (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/lists/{idList}/cards/{filter}getListsCardsByIdListByFilter()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
filter | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/lists/{idList}/closedupdateListsClosedByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — lists_closed (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/lists/{idList}/idBoardupdateListsIdBoardByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — lists_idBoard (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/lists/{idList}/moveAllCardsaddListsMoveAllCardsByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — lists_moveAllCards (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/lists/{idList}/nameupdateListsNameByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — lists_name (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/lists/{idList}/posupdateListsPosByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — lists_pos (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/lists/{idList}/subscribedupdateListsSubscribedByIdList()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — lists_subscribed (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/lists/{idList}/{field}getListsByIdListByField()
| Name | In | Required | Type |
|---|---|---|---|
idList | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
member60
https://trello.com/docs/api/member/index.html
GET/members/{idMember}getMembersByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
actions | query | no | string |
actions_entities | query | no | string |
actions_display | query | no | string |
actions_limit | query | no | string |
action_fields | query | no | string |
action_since | query | no | string |
action_before | query | no | string |
cards | query | no | string |
card_fields | query | no | string |
card_members | query | no | string |
card_member_fields | query | no | string |
card_attachments | query | no | string |
card_attachment_fields | query | no | string |
card_stickers | query | no | string |
boards | query | no | string |
board_fields | query | no | string |
board_actions | query | no | string |
board_actions_entities | query | no | string |
board_actions_display | query | no | string |
board_actions_format | query | no | string |
board_actions_since | query | no | string |
board_actions_limit | query | no | string |
board_action_fields | query | no | string |
board_lists | query | no | string |
board_memberships | query | no | string |
board_organization | query | no | string |
board_organization_fields | query | no | string |
boardsInvited | query | no | string |
boardsInvited_fields | query | no | string |
boardStars | query | no | string |
savedSearches | query | no | string |
organizations | query | no | string |
organization_fields | query | no | string |
organization_paid_account | query | no | string |
organizationsInvited | query | no | string |
organizationsInvited_fields | query | no | string |
notifications | query | no | string |
notifications_entities | query | no | string |
notifications_display | query | no | string |
notifications_limit | query | no | string |
notification_fields | query | no | string |
notification_memberCreator | query | no | string |
notification_memberCreator_fields | query | no | string |
notification_before | query | no | string |
notification_since | query | no | string |
tokens | query | no | string |
paid_account | query | no | string |
boardBackgrounds | query | no | string |
customBoardBackgrounds | query | no | string |
customStickers | query | no | string |
customEmoji | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}updateMembersByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/actionsgetMembersActionsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
entities | query | no | string |
display | query | no | string |
filter | query | no | string |
fields | query | no | string |
limit | query | no | string |
format | query | no | string |
since | query | no | string |
before | query | no | string |
page | query | no | string |
idModels | query | no | string |
member | query | no | string |
member_fields | query | no | string |
memberCreator | query | no | string |
memberCreator_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/members/{idMember}/avataraddMembersAvatarByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_avatar (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/avatarSourceupdateMembersAvatarSourceByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_avatarSource (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/bioupdateMembersBioByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_bio (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/boardBackgroundsgetMembersBoardBackgroundsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
filter | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/members/{idMember}/boardBackgroundsaddMembersBoardBackgroundsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_boardBackgrounds (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/boardBackgrounds/{idBoardBackground}getMembersBoardBackgroundsByIdMemberByIdBoardBackground()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idBoardBackground | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/boardBackgrounds/{idBoardBackground}updateMembersBoardBackgroundsByIdMemberByIdBoardBackground()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idBoardBackground | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_boardBackgrounds (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/members/{idMember}/boardBackgrounds/{idBoardBackground}deleteMembersBoardBackgroundsByIdMemberByIdBoardBackground()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idBoardBackground | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/boardStarsgetMembersBoardStarsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/members/{idMember}/boardStarsaddMembersBoardStarsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_boardStars (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/boardStars/{idBoardStar}getMembersBoardStarsByIdMemberByIdBoardStar()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idBoardStar | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/boardStars/{idBoardStar}updateMembersBoardStarsByIdMemberByIdBoardStar()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idBoardStar | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_boardStars (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/members/{idMember}/boardStars/{idBoardStar}deleteMembersBoardStarsByIdMemberByIdBoardStar()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idBoardStar | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/boardStars/{idBoardStar}/idBoardupdateMembersBoardStarsIdBoardByIdMemberByIdBoardStar()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idBoardStar | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_boardStars_idBoard (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/boardStars/{idBoardStar}/posupdateMembersBoardStarsPosByIdMemberByIdBoardStar()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idBoardStar | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_boardStars_pos (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/boardsgetMembersBoardsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
filter | query | no | string |
fields | query | no | string |
actions | query | no | string |
actions_entities | query | no | string |
actions_limit | query | no | string |
actions_format | query | no | string |
actions_since | query | no | string |
action_fields | query | no | string |
memberships | query | no | string |
organization | query | no | string |
organization_fields | query | no | string |
lists | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/boards/{filter}getMembersBoardsByIdMemberByFilter()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
filter | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/boardsInvitedgetMembersBoardsInvitedByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/boardsInvited/{field}getMembersBoardsInvitedByIdMemberByField()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/cardsgetMembersCardsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
actions | query | no | string |
attachments | query | no | string |
attachment_fields | query | no | string |
stickers | query | no | string |
members | query | no | string |
member_fields | query | no | string |
checkItemStates | query | no | string |
checklists | query | no | string |
limit | query | no | string |
since | query | no | string |
before | query | no | string |
filter | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/cards/{filter}getMembersCardsByIdMemberByFilter()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
filter | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/customBoardBackgroundsgetMembersCustomBoardBackgroundsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
filter | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/members/{idMember}/customBoardBackgroundsaddMembersCustomBoardBackgroundsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_customBoardBackgrounds (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/customBoardBackgrounds/{idBoardBackground}getMembersCustomBoardBackgroundsByIdMemberByIdBoardBackground()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idBoardBackground | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/customBoardBackgrounds/{idBoardBackground}updateMembersCustomBoardBackgroundsByIdMemberByIdBoardBackground()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idBoardBackground | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_customBoardBackgrounds (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/members/{idMember}/customBoardBackgrounds/{idBoardBackground}deleteMembersCustomBoardBackgroundsByIdMemberByIdBoardBackground()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idBoardBackground | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/customEmojigetMembersCustomEmojiByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
filter | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/members/{idMember}/customEmojiaddMembersCustomEmojiByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_customEmoji (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/customEmoji/{idCustomEmoji}getMembersCustomEmojiByIdMemberByIdCustomEmoji()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idCustomEmoji | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/customStickersgetMembersCustomStickersByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
filter | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/members/{idMember}/customStickersaddMembersCustomStickersByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_customStickers (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/customStickers/{idCustomSticker}getMembersCustomStickersByIdMemberByIdCustomSticker()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idCustomSticker | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/members/{idMember}/customStickers/{idCustomSticker}deleteMembersCustomStickersByIdMemberByIdCustomSticker()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idCustomSticker | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/deltasgetMembersDeltasByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
tags | query | yes | string |
ixLastUpdate | query | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/fullNameupdateMembersFullNameByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_fullName (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/initialsupdateMembersInitialsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_initials (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/notificationsgetMembersNotificationsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
entities | query | no | string |
display | query | no | string |
filter | query | no | string |
read_filter | query | no | string |
fields | query | no | string |
limit | query | no | string |
page | query | no | string |
before | query | no | string |
since | query | no | string |
memberCreator | query | no | string |
memberCreator_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/notifications/{filter}getMembersNotificationsByIdMemberByFilter()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
filter | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/members/{idMember}/oneTimeMessagesDismissedaddMembersOneTimeMessagesDismissedByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_oneTimeMessagesDismissed (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/organizationsgetMembersOrganizationsByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
filter | query | no | string |
fields | query | no | string |
paid_account | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/organizations/{filter}getMembersOrganizationsByIdMemberByFilter()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
filter | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/organizationsInvitedgetMembersOrganizationsInvitedByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/organizationsInvited/{field}getMembersOrganizationsInvitedByIdMemberByField()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/prefs/colorBlindupdateMembersPrefsColorBlindByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_colorBlind (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/prefs/localeupdateMembersPrefsLocaleByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_locale (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/prefs/minutesBetweenSummariesupdateMembersPrefsMinutesBetweenSummariesByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_minutesBetweenSummaries (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/savedSearchesgetMembersSavedSearchesByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/members/{idMember}/savedSearchesaddMembersSavedSearchesByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_savedSearches (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/savedSearches/{idSavedSearch}getMembersSavedSearchesByIdMemberByIdSavedSearch()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idSavedSearch | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/savedSearches/{idSavedSearch}updateMembersSavedSearchesByIdMemberByIdSavedSearch()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idSavedSearch | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_savedSearches (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/members/{idMember}/savedSearches/{idSavedSearch}deleteMembersSavedSearchesByIdMemberByIdSavedSearch()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idSavedSearch | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/savedSearches/{idSavedSearch}/nameupdateMembersSavedSearchesNameByIdMemberByIdSavedSearch()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idSavedSearch | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_savedSearches_name (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/savedSearches/{idSavedSearch}/posupdateMembersSavedSearchesPosByIdMemberByIdSavedSearch()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idSavedSearch | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_savedSearches_pos (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/savedSearches/{idSavedSearch}/queryupdateMembersSavedSearchesQueryByIdMemberByIdSavedSearch()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
idSavedSearch | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_savedSearches_query (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/tokensgetMembersTokensByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
filter | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/members/{idMember}/usernameupdateMembersUsernameByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — members_username (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/members/{idMember}/{field}getMembersByIdMemberByField()
| Name | In | Required | Type |
|---|---|---|---|
idMember | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
notification19
https://trello.com/docs/api/notification/index.html
POST/notifications/all/readaddNotificationsAllRead()
| Name | In | Required | Type |
|---|---|---|---|
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}getNotificationsByIdNotification()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
display | query | no | string |
entities | query | no | string |
fields | query | no | string |
memberCreator | query | no | string |
memberCreator_fields | query | no | string |
board | query | no | string |
board_fields | query | no | string |
list | query | no | string |
card | query | no | string |
card_fields | query | no | string |
organization | query | no | string |
organization_fields | query | no | string |
member | query | no | string |
member_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/notifications/{idNotification}updateNotificationsByIdNotification()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — notifications (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/boardgetNotificationsBoardByIdNotification()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/board/{field}getNotificationsBoardByIdNotificationByField()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/cardgetNotificationsCardByIdNotification()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/card/{field}getNotificationsCardByIdNotificationByField()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/displaygetNotificationsDisplayByIdNotification()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/entitiesgetNotificationsEntitiesByIdNotification()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/listgetNotificationsListByIdNotification()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/list/{field}getNotificationsListByIdNotificationByField()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/membergetNotificationsMemberByIdNotification()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/member/{field}getNotificationsMemberByIdNotificationByField()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/memberCreatorgetNotificationsMemberCreatorByIdNotification()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/memberCreator/{field}getNotificationsMemberCreatorByIdNotificationByField()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/organizationgetNotificationsOrganizationByIdNotification()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/organization/{field}getNotificationsOrganizationByIdNotificationByField()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/notifications/{idNotification}/unreadupdateNotificationsUnreadByIdNotification()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — notifications_unread (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/notifications/{idNotification}/{field}getNotificationsByIdNotificationByField()
| Name | In | Required | Type |
|---|---|---|---|
idNotification | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
organization38
https://trello.com/docs/api/organization/index.html
POST/organizationsaddOrganizations()
| Name | In | Required | Type |
|---|---|---|---|
key | query | yes | string |
token | query | yes | string |
application/json — organizations (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}getOrganizationsByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
actions | query | no | string |
actions_entities | query | no | string |
actions_display | query | no | string |
actions_limit | query | no | string |
action_fields | query | no | string |
memberships | query | no | string |
memberships_member | query | no | string |
memberships_member_fields | query | no | string |
members | query | no | string |
member_fields | query | no | string |
member_activity | query | no | string |
membersInvited | query | no | string |
membersInvited_fields | query | no | string |
boards | query | no | string |
board_fields | query | no | string |
board_actions | query | no | string |
board_actions_entities | query | no | string |
board_actions_display | query | no | string |
board_actions_format | query | no | string |
board_actions_since | query | no | string |
board_actions_limit | query | no | string |
board_action_fields | query | no | string |
board_lists | query | no | string |
paid_account | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}updateOrganizationsByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — organizations (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/organizations/{idOrg}deleteOrganizationsByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/actionsgetOrganizationsActionsByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
entities | query | no | string |
display | query | no | string |
filter | query | no | string |
fields | query | no | string |
limit | query | no | string |
format | query | no | string |
since | query | no | string |
before | query | no | string |
page | query | no | string |
idModels | query | no | string |
member | query | no | string |
member_fields | query | no | string |
memberCreator | query | no | string |
memberCreator_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/boardsgetOrganizationsBoardsByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
filter | query | no | string |
fields | query | no | string |
actions | query | no | string |
actions_entities | query | no | string |
actions_limit | query | no | string |
actions_format | query | no | string |
actions_since | query | no | string |
action_fields | query | no | string |
memberships | query | no | string |
organization | query | no | string |
organization_fields | query | no | string |
lists | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/boards/{filter}getOrganizationsBoardsByIdOrgByFilter()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
filter | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/deltasgetOrganizationsDeltasByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
tags | query | yes | string |
ixLastUpdate | query | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/descupdateOrganizationsDescByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — organizations_desc (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/displayNameupdateOrganizationsDisplayNameByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — organizations_displayName (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/organizations/{idOrg}/logoaddOrganizationsLogoByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — organizations_logo (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/organizations/{idOrg}/logodeleteOrganizationsLogoByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/membersgetOrganizationsMembersByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
filter | query | no | string |
fields | query | no | string |
activity | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/membersupdateOrganizationsMembersByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/members/{filter}getOrganizationsMembersByIdOrgByFilter()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
filter | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/members/{idMember}updateOrganizationsMembersByIdOrgByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/organizations/{idOrg}/members/{idMember}deleteOrganizationsMembersByIdOrgByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/organizations/{idOrg}/members/{idMember}/alldeleteOrganizationsMembersAllByIdOrgByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/members/{idMember}/cardsgetOrganizationsMembersCardsByIdOrgByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
idMember | path | yes | string |
actions | query | no | string |
attachments | query | no | string |
attachment_fields | query | no | string |
members | query | no | string |
member_fields | query | no | string |
checkItemStates | query | no | string |
checklists | query | no | string |
board | query | no | string |
board_fields | query | no | string |
list | query | no | string |
list_fields | query | no | string |
filter | query | no | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/members/{idMember}/deactivatedupdateOrganizationsMembersDeactivatedByIdOrgByIdMember()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
idMember | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — organizations_members_deactivated (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/membersInvitedgetOrganizationsMembersInvitedByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/membersInvited/{field}getOrganizationsMembersInvitedByIdOrgByField()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/membershipsgetOrganizationsMembershipsByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
filter | query | no | string |
member | query | no | string |
member_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/memberships/{idMembership}getOrganizationsMembershipsByIdOrgByIdMembership()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
idMembership | path | yes | string |
member | query | no | string |
member_fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/memberships/{idMembership}updateOrganizationsMembershipsByIdOrgByIdMembership()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
idMembership | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — organizations_memberships (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/nameupdateOrganizationsNameByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — organizations_name (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/prefs/associatedDomainupdateOrganizationsPrefsAssociatedDomainByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_associatedDomain (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/organizations/{idOrg}/prefs/associatedDomaindeleteOrganizationsPrefsAssociatedDomainByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/prefs/boardVisibilityRestrict/orgupdateOrganizationsPrefsBoardVisibilityRestrictOrgByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/prefs/boardVisibilityRestrict/privateupdateOrganizationsPrefsBoardVisibilityRestrictPrivateByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/prefs/boardVisibilityRestrict/publicupdateOrganizationsPrefsBoardVisibilityRestrictPublicByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/prefs/externalMembersDisabledupdateOrganizationsPrefsExternalMembersDisabledByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_externalMembersDisabled (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/prefs/googleAppsVersionupdateOrganizationsPrefsGoogleAppsVersionByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_googleAppsVersion (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/prefs/orgInviteRestrictupdateOrganizationsPrefsOrgInviteRestrictByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — prefs_orgInviteRestrict (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/organizations/{idOrg}/prefs/orgInviteRestrictdeleteOrganizationsPrefsOrgInviteRestrictByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
value | query | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/prefs/permissionLevelupdateOrganizationsPrefsPermissionLevelByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/organizations/{idOrg}/websiteupdateOrganizationsWebsiteByIdOrg()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — organizations_website (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/organizations/{idOrg}/{field}getOrganizationsByIdOrgByField()
| Name | In | Required | Type |
|---|---|---|---|
idOrg | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
search2
https://trello.com/docs/api/search/index.html
GET/searchgetSearch()
| Name | In | Required | Type |
|---|---|---|---|
query | query | yes | string |
idBoards | query | no | string |
idOrganizations | query | yes | string |
idCards | query | no | string |
modelTypes | query | no | string |
board_fields | query | no | string |
boards_limit | query | no | string |
card_fields | query | no | string |
cards_limit | query | no | string |
cards_page | query | no | string |
card_board | query | no | string |
card_list | query | no | string |
card_members | query | no | string |
card_stickers | query | no | string |
card_attachments | query | no | string |
organization_fields | query | no | string |
organizations_limit | query | no | string |
member_fields | query | no | string |
members_limit | query | no | string |
partial | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/search/membersgetSearchMembers()
| Name | In | Required | Type |
|---|---|---|---|
query | query | yes | string |
limit | query | no | string |
idBoard | query | no | string |
idOrganization | query | no | string |
onlyOrgMembers | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
session4
https://trello.com/docs/api/session/index.html
POST/sessionsaddSessions()
| Name | In | Required | Type |
|---|---|---|---|
key | query | yes | string |
token | query | yes | string |
application/json — sessions (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/sessions/socketgetSessionsSocket()
| Name | In | Required | Type |
|---|---|---|---|
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/sessions/{idSession}updateSessionsByIdSession()
| Name | In | Required | Type |
|---|---|---|---|
idSession | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — sessions (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/sessions/{idSession}/statusupdateSessionsStatusByIdSession()
| Name | In | Required | Type |
|---|---|---|---|
idSession | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — sessions_status (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
token10
https://trello.com/docs/api/token/index.html
GET/tokens/{token}getTokensByToken()
| Name | In | Required | Type |
|---|---|---|---|
token | path | yes | string |
fields | query | no | string |
webhooks | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/tokens/{token}deleteTokensByToken()
| Name | In | Required | Type |
|---|---|---|---|
token | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/tokens/{token}/membergetTokensMemberByToken()
| Name | In | Required | Type |
|---|---|---|---|
token | path | yes | string |
fields | query | no | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/tokens/{token}/member/{field}getTokensMemberByTokenByField()
| Name | In | Required | Type |
|---|---|---|---|
token | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/tokens/{token}/webhooksgetTokensWebhooksByToken()
| Name | In | Required | Type |
|---|---|---|---|
token | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
POST/tokens/{token}/webhooksaddTokensWebhooksByToken()
| Name | In | Required | Type |
|---|---|---|---|
token | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — tokens_webhooks (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/tokens/{token}/webhooksupdateTokensWebhooksByToken()
| Name | In | Required | Type |
|---|---|---|---|
token | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — tokens_webhooks (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/tokens/{token}/webhooks/{idWebhook}getTokensWebhooksByTokenByIdWebhook()
| Name | In | Required | Type |
|---|---|---|---|
token | path | yes | string |
idWebhook | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/tokens/{token}/webhooks/{idWebhook}deleteTokensWebhooksByTokenByIdWebhook()
| Name | In | Required | Type |
|---|---|---|---|
token | path | yes | string |
idWebhook | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/tokens/{token}/{field}getTokensByTokenByField()
| Name | In | Required | Type |
|---|---|---|---|
token | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
type1
https://trello.com/docs/api/type/index.html
GET/types/{id}getTypesById()
| Name | In | Required | Type |
|---|---|---|---|
id | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
webhook10
https://trello.com/docs/api/webhook/index.html
POST/webhooksaddWebhooks()
| Name | In | Required | Type |
|---|---|---|---|
key | query | yes | string |
token | query | yes | string |
application/json — webhooks (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/webhooks/updateWebhooks()
| Name | In | Required | Type |
|---|---|---|---|
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/webhooks/{idWebhook}getWebhooksByIdWebhook()
| Name | In | Required | Type |
|---|---|---|---|
idWebhook | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/webhooks/{idWebhook}updateWebhooksByIdWebhook()
| Name | In | Required | Type |
|---|---|---|---|
idWebhook | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
DELETE/webhooks/{idWebhook}deleteWebhooksByIdWebhook()
| Name | In | Required | Type |
|---|---|---|---|
idWebhook | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/webhooks/{idWebhook}/activeupdateWebhooksActiveByIdWebhook()
| Name | In | Required | Type |
|---|---|---|---|
idWebhook | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — webhooks_active (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/webhooks/{idWebhook}/callbackURLupdateWebhooksCallbackURLByIdWebhook()
| Name | In | Required | Type |
|---|---|---|---|
idWebhook | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — webhooks_callbackURL (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/webhooks/{idWebhook}/descriptionupdateWebhooksDescriptionByIdWebhook()
| Name | In | Required | Type |
|---|---|---|---|
idWebhook | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — webhooks_description (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
PUT/webhooks/{idWebhook}/idModelupdateWebhooksIdModelByIdWebhook()
| Name | In | Required | Type |
|---|---|---|---|
idWebhook | path | yes | string |
key | query | yes | string |
token | query | yes | string |
application/json — webhooks_idModel (required)
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
GET/webhooks/{idWebhook}/{field}getWebhooksByIdWebhookByField()
| Name | In | Required | Type |
|---|---|---|---|
idWebhook | path | yes | string |
field | path | yes | string |
key | query | yes | string |
token | query | yes | string |
| Status | Description | Schema |
|---|---|---|
200 | Success | — |
400 | Server rejection | — |
Try it
Developer reference
https://trello.com/1300 requests per 10 seconds per API key; 100 requests per 10 seconds per token. Requests to /1/members/ are additionally capped at 100 per 900 seconds.
- POST/boards
- GET/boards/{idBoard}
- GET/boards/{idBoard}/lists
- POST/cards
- GET/cards/{idCard}