cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#MONDAY_UPDATE_ITEM' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "MONDAY_UPDATE_ITEM", "parameters": { "itemId": "<string>", "boardId": "<string>", "name": "<string>", "externalId": "<string>", "columnValues": {} } } '
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
Item ID : The ID of the item to update.
Board ID
Name
External ID : An ID from your application to associate this item with. You can use this ID to sync updates to this task later.
Specify the column values of the item. (example: {"status": "Done", "person": {"personsAndTeams": [{"id": 12345678, "kind": "person"}]}})
Success
Was this page helpful?