Document Upload
Here are the APIs for submitting the required documents to honor your regulatory reporting partnership with SendSprint.
Upload
With this API you can upload all compliance documents (these documents should be zipped into a single file).
Note: in the URL below entity is the unique customer identifier for your customer, so it should be replaced when making your request.
Also, note that the value entity is alphanumeric. It can be just numbers or a mix of numbers and characters. Unsupported URL characters are not allowed.
countryIt should be the country code. Eg:USsignUpStateIt should be the state name. Eg:North CarolinasignUpDateIt should be in the format ofyear-month-day. Eg:2024-12-17statusIt should be either of the following:Pending, Active, DeactivatedverificationIt should be either of the following:Pending, Verified
{baseUrl}/developer/upload/{entity}/{customerName}/{email}/{agentName}/{signupState}/{status}/{verification}/{phone}/{street}/{postCode}/{state}/{country}/{signUpDate}curl -X POST '{baseUrl}/developer/upload/unique_identifier/test/test%40gmail.com/ABC/North%20Carolina/Active/Verified/0902345672/test%20street/100045/North%20Carolina/US/2024-12-17' \
--header 'Content-Type: application/x-zip-compressed' \
--header 'Authorization: bearer_token YOUR_TOKEN_HERE'{
"ResponseCode": "00",
"ResponseMessage": "Successful",
"Data": null
}Last updated