Skip to main content
Version: 1.7.3

RequestByUrlPayer

Use this endpoint to obtain a secure URL that can be embedded in your software or portal. Your clients can e-sign the 8453-EMP form upon clicking the URL.

This secure URL can be customized according to your preferences to elevate your own branding in the e-sign page. For more information, click here.

POST Form8453emp/RequestByURLPayer 
Run in Postman

Request Body

FieldTypeDescription
RecordIdGuidA Unique Record Identifier generated by TaxBandits when a 94X return is created.
customizationIdGuidOptional A unique customization identifier generated by TaxBandits after you complete the customization in the console.
Note: This service will be available soon.
CustomizationobjectOptional Collects the customizations like Business Logo, PrimaryColor, SecondaryColor, etc.
    BusinessLogoUrlStringOptional Gets the Business Logo. If given the business logo will be shown in the Iframe page.
Size Range: ..150
    LogoPositionStringOptional Gets the position in which the logo should be displayed.
Allowed values

"LEFT", "CENTER", "RIGHT"

    PrimaryColorStringOptional Gets the primary color for the portal. You can use this to customize the color theme of the portal to match with your application color
    SecondaryColorStringOptional Gets the secondary color for the portal. You can use this to customize the color theme of the portal to match with your application color
RedirectUrlsobjectOptional Collects the Redirect Urls as ReturnUrl and CancelUrl
    ReturnUrlStringOptional Return Redirection URL. Set the callback URL redirection once the tax-payer completes Form 8453-EMP.
Size Range: ..150
    CancelUrlStringOptional Cancel Redirection URL. Set the callback URL when the taxPayer clicks the cancel button on the Form 8453-EMP. Note: If you do not provide the Cancel Callback Redirection URL, the cancel button will not be shown to the Taxpayer.
Size Range: ..150

Request Json

{
"RecordId": "babf0c22-f13b-4d2a-ae6e-8022f4def4a2",
"CustomizationId": null,
"Customization": {
"BusinessLogoUrl": "https://www.spanenterprises.com/Content/Images/span.png",
"LogoPosition": "LEFT",
"PrimaryColor": "#E61A1A",
"SecondaryColor": "#18F244"
},
"RedirectUrls": {
"ReturnUrl": "https://example1.com",
"CancelUrl": "https://example2.com"
}
}

Response Body

FieldTypeDescription
RecordIdGuidA Unique Record Identifier generated by TaxBandits when a 94X return is created.
Form8453EMPUrlPayerStringURL that can be accessed on its own or embedded on the client's website using Iframe or other means.
Errorsobject[]Detailed error information.
    IdStringError ID number. This ID is assigned by TaxBandits and it is unique for each error.
    NameStringName of the errored node.
    MessageStringShows the error message.

Response JSON

{
"RecordId": "babf0c22-f13b-4d2a-ae6e-8022f4def4a2",
"Form8453EMPUrlPayer": "https://tbs-links.stssprint.com/Form8453EMP/Form8453?tpatkn=64a7c02f-4866-4740-b0bb-06f5a89ad5dd",
"Errors": null
}