PATCH
/
v3
/
proposals
/
{uuid}
/
data
curl --request PATCH \
  --url https://api.proposales.com/v3/proposals/{uuid}/data \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "data": {}
}'
{
  "data": {}
}

Body

uuid
string
required

The UUID of the proposal to update

data
object
required

The fields to update in the proposal’s data property. Passing null as a key will delete it from the proposal data. Omitted and undefined values are left unchanged.

Response

data
object

The updated data field of the proposal.