Skip to main content

V2 API: Update Custom Fields of Project (Input of stages)

Updated over a week ago

Public URL : https://api.virtualsaleportal.com/api/public/v2/update-custom-fields/project (PUT)

Note: unique_id can be subhub_id or external_id.

Example Payload:

{
"unique_id": "EXY-10231345",
"fields": [
{
"field_key": "pto_notes",
"value": "Updated Note"
}
]
}

OR update a single field:

{
"unique_id": "EXY-10231345",
"fields": {
"field_key": "pto_notes",
"value": "Updated Note"
}
}
Did this answer your question?