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.

  • country It should be the country code. Eg: US

  • signUpState It should be the state name. Eg: North Carolina

  • signUpDate It should be in the format of year-month-day. Eg: 2024-12-17

  • status It should be either of the following: Pending, Active, Deactivated

  • verification It should be either of the following: Pending, Verified

URL
{baseUrl}/developer/upload/{entity}/{customerName}/{email}/{agentName}/{signupState}/{status}/{verification}/{phone}/{street}/{postCode}/{state}/{country}/{signUpDate}
REQUEST
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'
SUCCESS RESPONSE:
{
    "ResponseCode": "00",
    "ResponseMessage": "Successful",
    "Data": null
}

Last updated