REST interface to Avalara's enterprise tax service, AvaTax.
This API enables the firm admin of a client account to reset a previously created linkage request by a firm.
1curl -g -X POST 'https://sandbox-rest.avatax.com/api/v2/firmclientlinkages/{id}/reset' \ 2-H 'X-Avalara-Client: {X-Avalara-Client}' \ 3-H 'Authorization: Basic <Base64-encoded credentials>' \ 4-H 'Content-Type: application/json'
1{ 2 "id": 123456, 3 "firmAccountId": 23982571, 4 "firmAccountName": "Firm Account", 5 "clientAccountId": 24958289, 6 "clientAccountName": "Client Account", 7 "createdDate": "2025-07-17T04:05:11.4258631+00:00", 8 "createdUserId": 213, 9 "modifiedDate": "2025-07-17T04:05:11.4259036+00:00", 10 "modifiedUserId": 213, 11 "status": "Requested", 12 "isDeleted": false 13}