Get IP deal terms
GET
/api/canvas/{deal_id}/ip/terms
const url = 'https://example.com/api/canvas/example/ip/terms';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/canvas/example/ip/terms \ --header 'Authorization: Bearer <token>'Get current IP deal terms and auto-populated suggestions.
Returns saved terms (if any) plus auto-populated values from pipeline data. Frontend merges these: saved terms take priority, auto-populated fills gaps.
Phase 4: RequireViewer — all collaborators can view IP terms.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” deal_id
required
Deal Id
string
Responses
Section titled “ Responses ”Successful Response
Media type application/json
IPTermsResponse
Response for IP deal terms retrieval.
object
has_saved_terms
Has Saved Terms
boolean
pipeline_available
Pipeline Available
boolean
Example
{ "has_saved_terms": false, "pipeline_available": false}Validation Error
Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}