Approval Sheets API
Approval Sheets API
PrintfulStoreClient.approvalSheets
Retrieve a list of approval sheets
Retrieve a list of approval sheets confirming suggested changes to files of on hold orders.
Method
PrintfulStoreClient.approvalSheets.getApprovalSheets()
Arguments
None
Example Usage:
// Soon to be added
Approve a design
Uses the confirm hash of an approval sheet to approve a design and remove the hold on an order
Methods
PrintfulStoreClient.approvalSheets.approveDesign(confirm_hash: string, status: string)
Arguments
confirm_hash
- The confirm hash for the approval sheet you would like to approve.
status
- Status value
Example Usage:
// Soon to be added
Submit changes to an approval sheet
Use this to submit alternative changes to a design that has an approval sheet
Methods
PrintfulStoreClient.approvalSheets.changeApprovalSheet(confirm_hash: string, changes: ApprovalSheetChanges)
Arguments
confirm_hash
- The confirm hash for the approval sheet you would like to approve.
changes
- Data to be submitted to Printful designers
Example Usage:
// Soon to be added