put https://app1.compliancely.com/api/v1/transcript/consent/upload//
This api updates tax transcript consent form pdf
Note: Re-collecting the consent details through the template link is coming soon. This API works only for the consent PDFs uploaded using Upload Tax Transcript Consent PDF API.
Request and Response Object Structures.
{
'consent_pdf': file,
'payer_type': 'business/individual',
'first_name': string,
'last_name': string,
'email': string,
'business_name': string,
'business_type': string,
'address1': string,
'address2': string,
'city': string,
'state': string,
'zip': string,
'tin': string,
'mobile_number': string,
'business_title': string
}
{
"success_message": string,
"data": {
"id": integer
},
"success": boolean
}
Sample Requests and Responses.
{
'consent_pdf': 'consent pdf file',
'payer_type': 'business/individual',
'first_name': '',
'last_name': '',
'email': '',
'business_name': '',
'business_type': '',
'address1': '',
'address2': '',
'city': '',
'state': '',
'zip': '',
'tin': '',
'mobile_number': '',
'business_title': ''
}
{
"success_message": "consent uploaded",
"data": {
"id": 160
},
"success": true
}
{
"errors": [
{
"message": "Your consent is being processed."
}
],
"data": null,
"success": false
}
{
"errors": [
{
"code": "payer_type",
"message": "valid choices are business or individual"
}
],
"data": null,
"success": false
}
{
"detail": "Authentication credentials were not provided."
}
{
"status": 0,
"custom_credit_message": [
"Credit limit reached! For assistance, please contact the support"
]
}
{
"detail": "Invalid token."
}
{
"detail": "Invalid token header. No credentials provided."
}