Path Parameters
Identifier of the post to be updated.
Body Parameters
Updated description or body of the post.
New board identifier if the post is being moved.
New status identifier for updating the post’s status.
Option to pin the post to the top of the board.
Option to disable comments on the post.
Additional date or timestamp detail for the post.
// Replace API_KEY with your api key
curl --location --request PUT 'https://api.supahub.com/api/v1/posts/:postId' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer API_KEY' \
--data-urlencode 'title=Updated Post Title' \
--data-urlencode 'desc=Updated description of post.' \
--data-urlencode 'board=clrjfu0l10009bfg8xy27xy8c' \
--data-urlencode 'status=clrjfu0l1000cbfg8nkmdx3vl' \
--data-urlencode 'etc=2024-06-20T16:03:00Z'