post https://app1.compliancely.com/api/v1/transcript/consent/upload/
This API accepts the tax transcript signed consent PDF
This API accepts a signed consent pdf, optionally the details, and processes the transcript request.
Note: The designee details of the consent form should be of Zenwork.
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": "Please provide a valid pdf"
}
],
"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."
}