Skip to main content
PATCH
/
v1
/
proposals
/
{id}
Update proposal metadata
curl --request PATCH \
  --url https://api.propal.io/v1/proposals/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "slug": "<string>",
  "lead_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "theme_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "password": "<string>",
  "proposal_product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "allow_payment": true,
  "allow_client_to_sign": true,
  "allow_client_to_download_pdf": true,
  "allow_client_to_deny": true
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.propal.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key in format: pp_live_xxxxxxxxxxxxxxxxxxxxxxxx

Path Parameters

id
string<uuid>
required

Proposal UUID

Body

application/json
title
string
slug
string
lead_id
string<uuid> | null
language
enum<string>
Available options:
fr,
en
theme_id
string<uuid> | null
password
string | null
proposal_product_id
string<uuid> | null

UUID of an existing proposal_products row to attach. Pass null to detach.

allow_payment
boolean
allow_client_to_sign
boolean
allow_client_to_download_pdf
boolean
allow_client_to_deny
boolean

Response

Proposal updated