Get Reference Field Endpoint
With printIQ API, you can see the reference field from the job using Get Reference field.
How to use end point.
Endpoint:
api/QuoteProcess/GetReferenceFields
{
"Customer": "string", // Will return Customer Reference
"Job": "string" // Will return Reference that's available in the job
}
If you need Customer Reference, then you can remove Job from the JSON.

References limit
However we are limited to:
- Customer Reference
- Job Reference
- Invoice Reference
- Quote Reference
- Quote Product Reference.
You can find reference here.
{{YourSiteURL}}/Admin/ReferenceFields.aspx
Click here to find out more about Reference Field
Related Articles
Update Reference Field / Update All References Field
You can use this endpoint to update reference field from Customer or Job. api/QuoteProcess/UpdateReferenceField { "Customer": "string", "Job": "string", "ReferenceName": "string", "ReferenceValue": "string" } Please note UpdateReferenceField are used ...
References (BETA)
Introduction In printIQ, 'References' generally refer to labels or identifiers that are used to link, track and categorize customers, quotes, jobs or related data across the system. References Admin Screen To access the References Admin screen, ...
Save Quote Question endpoint
Where to get the Value of SaveQuoteQuestion Endpoint? If you are experimenting on how to run POST Method to SaveQuoteQuestion Endpoint. You can use this method to check the Payload required. Console --> Network Tab --> Check Arrow Using this example, ...
Get Quote Questions
You can get a list of Quote Questions from a Quote via below end point. api/QuoteProcess/GetQuoteQuestions This endpoint will require: { "JobNo": "string", "RFQNo": "string", "QQDKey": 0 } You can get the QQDKey from GetQuoteDetails Endpoint. ...
Generate anonymous authentication guid for proof API endpoint
POST/api/QuoteProcess/GenerateAnonymousAuthenticationGuidForProof?LoginToken={{LoginToken}} Description This endpoint generates an anonymous authentication GUID for proof. Along with the Login Token obtained from the GetLoginToken endpoint, a valid ...