RequestByUrl
RequestByUrl
This is a payee-initiated method that allows vendors, contractors, or affiliates to complete Form W-9 on their own, using a secure URL generated by the TaxBandits API. You can embed this URL into your application/portal as an iframe.
How it works
1. OAuth 2.0 Authentication
As with any TaxBandits API call, begin by authenticating through the OAuth 2.0 flow to obtain an access token. This token must be included in the request header as a Bearer token. Refer to the OAuth 2.0 Authentication guide for details on JWT authentication and token handling.
2. Create Business
Before initiating a W-9 request, ensure at least one business (payer) has been created using the Business endpoint. This is a mandatory step.
3. Call the [POST] FormW9/RequestByUrl Endpoint
Your request must include the following:
- Authorization Header - Include the Bearer token obtained from OAuth.
- Payee Reference (Optional) - A unique identifier for the payee (e.g., vendor ID, email, or random ID). This will be used for future references to this recipient.
- Payee Name and Address (Optional) - Pre-fills the form with payee details.
- Business Identifier (Optional) - Provide the BusinessId or TIN to identify the payer associated with the request. If omitted, the form will be tied to the first business in your account.
- DBA Reference (Optional) - Used to display a specific DBA name as the requester on the form.
- Customizations (Optional) - You may include branding customization in the request, such as logo, theme colors, etc. You may also include a CustomizationId if you’ve generated one. Learn more
- Languages (Optional) – Specify the language for the form. Recipients can also change their preferred language if needed.
4. Payee completes the form
Once your request is submitted, TaxBandits will return a secure URL in the response. You can either:
- Embed this URL in your web or native app (iframe), or
- Share the link directly with the respective payee
Upon clicking the secure URL, the payee can complete Form W-9, e-sign, and submit it.
5. Get notified
- Webhooks - If you’ve configured Webhooks for the event type 'Form W-9 Status Change' webhook, you will receive a webhook notification once the payee submits the form. The Webhook payload includes payee details (name, TIN, address) and a link to download the completed form. Learn more
- Status endpoint - Alternatively, you can also use the Status endpoint to retrieve the status.
- Web messaging - Instead of Webhooks, you can choose to receive notifications via web messaging. For more information, click here.
Automate TIN Matching
If you want to validate the TINs automatically once collected, you can set the IsTINMatching as TRUE in your request JSON.
POST FormW9/RequestByUrl
Request Body
Field | Type | Description |
---|---|---|
Requester | Object | Collects the Requestor identifier i.e., TIN or TaxBandits Business Id or PayerRef. If neither is supplied, the default Business will be assumed as the Requester. |
PayerRef | String | Optional Unique payer identifier assigned by the client while requesting the payer information using the endpoint Business/RequestByURL. Size Range: 1-50 |
BusinessId | Guid | Optional TaxBandits Unique Business Identifier. This ID is generated by TaxBandits after you create a business in your account using the Business endpoint. If you do not provide the BusinessId in the request, then the URL will be generated against the default business, i.e., the first business created in your account. |
TIN | String | OptionalTaxpayer Identification Number. Use this as an alternative for BusinessId or PayerRef. Size Range: 9-11 |
DBAId | String | OptionalUnique Identifier for the DBA. |
DBARef | String | OptionalA Unique identifier for each DBA. This identifier can be used in future references for the DBA in the API. Size Range: 1 - 50 |
Recipient | Object | Collects the recipient's unique identifier and other basic information of the recipient that will be pre-filled on the Form. |
PayeeRef | String | A unique identifier for each recipient completing the Form W-9 which will be used for future reference. Size Range: 1-50 |
Name | String | Optional Recipient Name. This will be pre-filled on the Form. Size Range: ..40 |
Address | Object | Collects US address details of the recipient. |
Address1 | String | Optional Recipient US Address 1 (street address or post office box of that locality). This will be pre-filled on the Form. Size Range: ..46 |
Address2 | String | Optional Recipient US Address 2 (suite or apartment number). This will be pre-filled on the Form. Size Range: ..46 |
City | String | OptionalRecipient US City. This will be pre-filled on the Form. Size Range: ..50 |
State | String | OptionalRecipient US State Code. This will be pre-filled on the Form. Size Range: 2 Allowed values"AL", "AK", "AZ", "AR", "CA", "CO", "CT", "DE", "DC", "FL", "GA", "HI", "ID", "IL", "IN", "IA", "KS", "KY", "LA", "ME", "MD", "MA", "MI", "MN", "MS", "MO", "MT", "NE", "NV", "NH", "NJ", "NM", "NY", "NC", "ND", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "UT", "VT", "VA", "WA", "WV", "WI", "WY", "AS", "FM", "GU", "MH", "MP", "PW", "PR", "VI", "AA", "AE", "AP" |
ZipCd | String | OptionalRecipient Zip Code. In the format 99999 or 99999-9999. This will be pre-filled on the Form. Size Range: 5..10 |
IsTINMatching | Boolean | OptionalTIN Matching will be enabled when the value is set as True. Once the recipient completes Form W-9, TaxBandits will match the Recipient's Name and SSN with the IRS database and notify the client via the webhook with the TIN results. |
CustomizationId | Guid | Optional A unique customization identifier generated by TaxBandits after you complete the customization process in the Developer console or the unique ID you received in the response of the PortalCustomization CREATE Endpoint. endpoint. Note: You can customize the W-9/W-8 page (secure URL) with your own logo, favicon, and primary and secondary colors. |
Customization | Object | OptionalCollects the customizations like TIN service, Business Logo and Callback URLs. |
BusinessLogoUrl | String | Optional Gets the Business Logo. If given the business logo will be shown in the Iframe page. Size Range: ..150 |
LogoPosition | String | Optional Gets the position in which the logo should be displayed.Allowed values“LEFT”, “CENTER”, “RIGHT” |
InterviewFlow | Boolean | Optional If TRUE, your vendors will fill the W-9 in an interview flow instead of the traditional Form filling flow. |
PrimaryColor | String | Optional 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 |
SecondaryColor | String | Optional 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 |
RedirectUrls | Object | Collects the Redirect Urls as ReturnUrl and CancelUrl. |
PrefLang | String | OptionalGets the default display language for the portal. If not set, English will be shown.Allowed values"en-US", "es-ES", "fr-FR","de-DE","uk-UA","pt-PT" |
ShowDownloadPage | Boolean | Optional If TRUE, your vendors will have the option to download the completed W-9 form. |
RedirectUrls | Object | Collects the Redirect Urls as ReturnUrl and CancelUrl. |
ReturnUrl | String | Optional Return Redirection URL. Set the callback URL redirection once the recipient completes filling the Form W-9. Size Range: ..150 |
CancelUrl | String | Optional Cancel Redirection URL. Set the callback URL when the recipient clicks the cancel button on the Form W-9. Note: If you do not provide the Cancel Callback Redirection URL, the cancel button will not be shown to the recipient. Size Range: ..150 |
RedirectTime | Number | Optional Redirection Time. Set the time before redirecting to the callback URL. Note: Redirect URL is measured in seconds. Size Range:5-300 |
Response Body
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission. |
PayeeRef | String | Unique identifier of the recipient. |
W9Url | String | URL that can be accessed on its own or embedded on the client's website using Iframe or other means. |
Errors | object[] | Collection of errors for the Recipient |
Id | string | Error ID number. This ID is assigned by TaxBandits and it is unique for each error. |
Name | string | Name of the errored node. |
Message | string | Shows the error message |
Request Json
- Sample 1
- Sample 2
- Sample 3
- Sample 4
- Sample 5
Request URL for Form W-9 with Payer Reference and opt for Customization and TIN Matching
{
"Requester": {
"PayerRef": "D12345",
"BusinessId": null,
"TIN": null,
"DBAId": null,
"DBARef": null
},
"Recipient": {
"PayeeRef": "123456",
"Name": "John",
"IsTINMatching": true
},
"Customization": {
"BusinessLogoUrl": "https://www.spanenterprises.com/Content/Images/span.png",
"LogoPosition": "CENTER",
"InterviewFlow": true,
"PrimaryColor": "#E61A1A",
"SecondaryColor": "#18F244",
"ShowDownloadPage": true,
"PrefLang": "es-ES"
},
"RedirectUrls": {
"ReturnUrl": "https://example.com",
"CancelUrl": "https://example.com"
}
}
Request URL for Form W-9 with BusinessId and provided RedirectUrl.
{
"Requester": {
"PayerRef": null,
"BusinessId": "1ccf76ee-c286-4f02-a03f-6ed885e341ef",
"TIN": null,
"DBAId": null,
"DBARef": null
},
"Recipient": {
"PayeeRef": "123456",
"Name": "John",
"IsTINMatching": true
},
"Customization": null,
"RedirectUrls": {
"ReturnUrl": "https://example.com",
"CancelUrl": "https://example.com"
}
}
Request URL with DBAId and DBARef details. The Recipient Address will be pre-filled in the form No Requester details were sent in and opted for TIN Matching.
{
"Requester": {
"PayerRef": null,
"BusinessId": null,
"TIN": "201652371",
"DBAId": "97a16024-c7d2-41d7-92fe-103341d58fa0",
"DBARef": "24BC"
},
"Recipient": {
"PayeeRef": "4646D",
"Name": "Michal",
"Address": {
"Address1": "2603 Kinsey Road",
"Address2": "Main Street",
"City": "Dothan",
"State": "AL",
"ZipCd": "36303"
},
"IsTINMatching": true
},
"Customization":null,
"RedirectUrls":null
}
Request URL with Payee Reference, Recipient details, Opted for TIN Matching and Customization with redirectionurl
{
"Requester": {
"PayerRef": "D12345",
"BusinessId": null,
"TIN": null,
"DBAId": null,
"DBARef": null
},
"Recipient": {
"PayeeRef": "123456",
"Name": "john",
"Address": {
"Address1": "2603 Kinsey Road",
"Address2": "Main Street",
"City": "Dothan",
"State": "AL",
"ZipCd": "36303"
},
"IsTINMatching": true
},
"Customization": {
"BusinessLogoUrl": "https://www.spanenterprises.com/Content/Images/span.png",
"LogoPosition": "CENTER",
"InterviewFlow": true,
"PrimaryColor": "#E61A1A",
"SecondaryColor": "#18F244",
"ShowDownloadPage": true
},
"RedirectUrls": {
"ReturnUrl": "https://example.com",
"CancelUrl": "https://example.com",
"RedirectTime": 60
}
}
Create a customized Form W-9 secure URL based on the CustomizationId.
{
"Requester": {
"PayerRef": null,
"BusinessId": "011d9058-fc7c-4182-bb4e-68d5ed7d7b2c",
"TIN": null,
"DBAId": null,
"DBARef": null
},
"Recipient": {
"PayeeRef": "Pay457",
"Name": "John",
"IsTINMatching": true
},
"CustomizationId": "0ecbdb4f-4cf0-440f-b412-8793eeaf6ee1",
"Customization": null,
"RedirectUrls": {
"ReturnUrl": "https://exampleweblink1.com",
"CancelUrl": "https://exampleweblink2.com"
}
}
Response JSON
- Response 1
- Response 2
- Response 3
- Response 4
- Response 5
{
"SubmissionId": "6e3195f2-4a56-4349-bb19-69d5f1bb5393",
"PayeeRef": "123456",
"W9Url": "https://testlinks.taxbandits.io?uId=6ccae518-e6f8-4c1c-83d9-767bb9949a02",
"Errors": null
}
{
"SubmissionId": "9f17aa4d-3b5c-4dbf-9f93-a5548e97869b",
"PayeeRef": "123456",
"W9Url": "https://testlinks.taxbandits.io?uId=f208c686-6d59-45c2-a052-cf9128347a5b",
"Errors": null
}
{
"SubmissionId": "aa2373c6-f494-45fb-83ea-cdc9487e1643",
"PayeeRef": "4646D",
"W9Url": "https://testlinks.taxbandits.io?uId=7f10cd43-7362-4027-835c-71557a222fd8",
"Errors": null
}
{
"SubmissionId": "abfdca28-0196-4157-b0a1-500d82a9d1ec",
"PayeeRef": "4646D",
"W9Url": "https://testlinks.taxbandits.io?uId=90a20cbd-8a8c-479a-8e2d-f633b3ab54f3",
"Errors": null
}
{
"SubmissionId": "c3b6e7eb-805a-4721-9294-a41a04b42a2d",
"PayeeRef": "Pay457",
"W9Url": "https://testlinks.taxbandits.io?uId=c2fd5d7b-c24e-4e01-85f3-32e9a1a7c805",
"Errors": null
}