Skip to main content

Processing Statement

Endpoint for uploading a processing statement for a Business Account.

POST /api/v1/revere_pay/signup_entry/assets

Request Parameters

NameDescriptionTypeRequired
fileThe file to be uploaded (PDF). Maximum file size is 10 MB.fileRequired
signup_from_idThe Signup Form ID associated with the onboarding request.stringRequired

Response

FieldDescriptionType
dataUnique file ID generated after upload.string
errorError message if the upload fails.string

Example Usage

onboarding.js
const formData = new FormData();
formData.append('file', fileInput.files[0]);
formData.append('signup_from_id', 'YOUR_SIGNUP_FORM_ID');

fetch('https://api.reverepayments.dev/api/v1/revere_pay/signup_entry/assets', {
method: 'POST',
body: formData
})
.then((response) => response.json())
.then((result) => console.log(result))
.catch((error) => console.log('error', error));