Skip to main content
GET
/
v1
/
proposals
/
{id}
Get a proposal
curl --request GET \
  --url https://api.propal.io/v1/proposals/{id} \
  --header 'Authorization: Bearer <token>'
{
  "proposal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "<string>",
  "slug": "<string>",
  "deal_status": "<string>",
  "page_status": "<string>",
  "payment_status": "<string>",
  "language": "<string>",
  "created_at": "<string>",
  "sent_at": "<string>",
  "published_at": "<string>",
  "lead_id": "<string>",
  "lead_name": "<string>",
  "lead_email": "<string>",
  "is_deleted": true,
  "is_archived": 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

Response

Proposal object

proposal_id
string<uuid> | null
required
title
string | null
required
slug
string | null
required
deal_status
string | null
required
page_status
string | null
required
payment_status
string | null
required
language
string | null
required
created_at
string | null
required
sent_at
string | null
required
published_at
string | null
required
lead_id
string | null
required
lead_name
string | null
required
lead_email
string | null
required
is_deleted
boolean | null
required
is_archived
boolean | null
required