curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#TRELLO_UPDATE_CARD' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "TRELLO_UPDATE_CARD",
"parameters": {
"cardId": "<string>",
"boardId": "<string>",
"listId": "<string>",
"name": "<string>",
"description": "<string>",
"isClosed": "no",
"position": "<string>",
"dueDate": "<string>",
"isDueDateComplete": "no",
"memberIds": "<string>",
"labelIds": "<string>",
"address": "<string>",
"locationName": "<string>",
"coordinates": "<string>"
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#TRELLO_UPDATE_CARD' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "TRELLO_UPDATE_CARD",
"parameters": {
"cardId": "<string>",
"boardId": "<string>",
"listId": "<string>",
"name": "<string>",
"description": "<string>",
"isClosed": "no",
"position": "<string>",
"dueDate": "<string>",
"isDueDateComplete": "no",
"memberIds": "<string>",
"labelIds": "<string>",
"address": "<string>",
"locationName": "<string>",
"coordinates": "<string>"
}
}
'Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Card ID : The ID of the card to update.
Specify a board ID to move this card into. If this field is specified, a list must also be specified
Specify a list ID to move this card into
Name
Description
Closed : Specify whether or not the card should be archived.
no, yes Position : Set the position of the new card to top, bottom, or a positive number.
Due Date : Specify a date for this card to be due.
Due Date Complete : Specify whether or not the card’s due date should be marked complete.
no, yes Member IDs : Specify an array of member IDs to add to the card.
Label IDs : Specify an array of label IDs to add to the card.
Address : For use with Trello’s Map View.
Location Name : For use with Trello’s Map View.
Coordinates : For use with Trello’s Map View. Use a lat,long-formatted string.
Success
Was this page helpful?