Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Phabricator Conduit API support edit comment/transaction?

Tags:

phabricator

I come across a project in which I have to develop a tool to update the comment of a Maniphest task.

I have searched across the Phabricator Conduit API page, but I can only find APIs for applying new transactions.

Is there any API or workaround to edit a comment/transaction?

Thanks in advance.

like image 597
user6670476 Avatar asked Feb 24 '26 22:02

user6670476


1 Answers

You can use maniphest.edit with a transaction type of description, like so:

curl https://secure.phabricator.com/api/maniphest.edit \
    -d api.token=api-token \
    -d transactions[0][type]=description \
    -d transactions[0][value]=My%20new%20task%20description \
    -d objectIdentifier=1
like image 81
CasualSuperman Avatar answered Feb 28 '26 04:02

CasualSuperman