Set a card description using API

Is there any work around on How can i set a card description using API call? I looked in API docs but did not find anything in Card’s POST type.

1 Like

Here is the documentation on updating a card: https://developer.atlassian.com/cloud/trello/rest/#api-cards-id-put

You can make a PUT request with the updated description in the query like:

https://api.trello.com/1/cards/{idCard}?desc=newDescriptionHere&key=yourKey&token=yourToken

1 Like