PUT /cards/{id}

Update a card. Query parameters may also be replaced with a JSON request body instead.

Servers

Path parameters

Name Type Required Description
id String Yes

The ID of the Card

Query parameters

Name Type Required Description
idAttachmentCover String No

The ID of the image attachment the card should use as its cover, or null for none

coordinates String No

For use with/by the Map View. Should be latitude,longitude

subscribed Boolean No

Whether the member is should be subscribed to the card

dueComplete Boolean No

Whether the status of the card is complete

idBoard String No

The ID of the board the card should be on

pos No

The position of the card in its list. top, bottom, or a positive float

due String No

When the card is due, or null

desc String No

The new description for the card

cover Object No

Updates the card's cover | Option | Values | About | |--------|--------|-------| | color | pink, yellow, lime, blue, black, orange, red, purple, sky, green | Makes the cover a solid color . | | brightness | dark, light | Determines whether the text on the cover should be dark or light. | url | An unsplash URL: https://images.unsplash.com | Used if making an image the cover. Only Unsplash URLs work. | idAttachment | ID of an attachment on the card | Used if setting an attached image as the cover. | | size | normal, full | Determines whether to show the card name on the cover, or below it. |

brightness can be sent alongside any of the other parameters, but all of the other parameters are mutually exclusive; you can not have the cover be a color and an idAttachment at the same time.

On the brightness options, setting it to light will make the text on the card cover dark:

And vice versa, setting it to dark will make the text on the card cover light:

idLabels String No

Comma-separated list of label IDs

name String No

The new name for the card

closed Boolean No

Whether the card should be archived (closed: true)

locationName String No

For use with/by the Map View

idList String No

The ID of the list the card should be in

idMembers String No

Comma-separated list of member IDs

start String No

The start date of a card, or null

address String No

For use with/by the Map View

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.