> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # GenerateEvidenceUploadUrl # Package: wixPaymentsProvider # Namespace: TransactionServiceV3 # Method link: https://dev.wix.com/docs/api-reference/business-management/payments/wix-payments-provider/transactions/generate-evidence-upload-url.md ## Permission Scopes: Manage Disputes: SCOPE.DC-PAYMENTS.MANAGE-DISPUTES ## Introduction Generates URL to upload evidence for a dispute. --- ## REST API ### Schema ``` Method: generateEvidenceUploadUrl Description: Generates URL to upload evidence for a dispute. URL: https://www.wixapis.com/transaction-service/v3/transactions/{transactionId}/disputes/{disputeId}/generate-evidence-upload-url Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: accountId Method parameters: param name: accountId | type: accountId | description: Wix Payments account GUID. | required: true Return type: GenerateEvidenceUploadUrlResponse - name: uploadUrl | type: string | description: Evidence upload URL. - name: uploadToken | type: string | description: Evidence upload token. Possible Errors: HTTP Code: 428 | Status Code: FAILED_PRECONDITION | Application Code: DISPUTE_EVIDENCE_ARE_NOT_EXPECTED | Description: Dispute evidence isn't expected at this time. ``` ### Examples ### Generate evidence upload url Generate evidence upload url ```curl curl --request POST \ --url https://www.wixapis.com/payments/v3/transactions/bb4188b7-1779-44d6-961d-e3db25a6bea0/disputes/0a6f4f4a-407f-4892-836c-ad968708c679/generate-evidence-upload-url \ --header 'Authorization: ' \ --header 'Content-Type: application/json; charset=utf-8' \ --data '{ "account_id" : "c94b4b44-4523-4826-a6ce-5fed1cc19d59" }' ``` ---