put https://app1.compliancely.com/api/v1/transcript/update//
This API facilitates the updating of consent data in the event of consent rejection.
{
"first_name": string, // Optional
"last_name": string, // Optional
"email": string, // new submission link will be sent to this email else it will be sent to old email address from previous submission.
"address1": string, //Optional
"address2": string, //Optional
"city": string, //Optional
"zip5": string, //Optional
"state": string, // Optional (Should be a valid US State)
"individual_tin": string, // Optional, if workflow is individual (SSN)
"individual_mobile_number": string, // Optional, if workflow is individual
"business_tin": string, // Optional, if workflow is business (EIN)
"business_mobile_number": string, // Optional, if workflow is business
"business_name": string, // Optional, if workflow is business
"business_designation": string, // Optional, if workflow is business
"business_type": string, // Optional, if workflow is business
// If below flag is set it will send the link to the taxpayer's to do the resubmission
// else it will update the transcript data without taxpayer's involvment
"send_edit_link_to_taxpayer_on_rejection": boolean
}
{
"success_message": string,
"data": {
"first_name":string,
"last_name": string,
"email": string,
"address1": string,
"address2": string,
"city": string,
"zip5": string,
"state": string,
"individual_tin": string,
"individual_mobile_number": string,
"business_tin": string,
"business_mobile_number": string,
"business_name": string,
"business_designation": string,
"business_type": string,
"send_edit_link_to_taxpayer_on_rejection": boolean
},
"success": boolean
}