Skip to main content
POST
/
sendEvidence
Send Evidence
curl --request POST \
  --url https://api.bleeprs.com/api/sendEvidence \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "emails": [
    "sam@bleep,com"
  ],
  "numberOfDigits": 8,
  "receiverNumber": "2345678909999",
  "seconds": 1000,
  "senderId": "SUPERMAN",
  "sendtoEmail": true
}
'
Evidence can be seen as a Verify API - That API that is used for sending OTP to multi-factor authentication

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
emails
string[]

A copy of this message can be sent to these email addresses

Example:
["sam@bleep,com"]
numberOfDigits
number

The number of digits to be sent as an OTP [6 - 100]

Example:

8

receiverNumber
string

Target phone number for delivery

Example:

"2345678909999"

seconds
number

Duration before expiry in seconds

Example:

1000

senderId
string

Pre-approved sender id based on the region and route

Example:

"SUPERMAN"

sendtoEmail
boolean

If message should be sent to email or not

Example:

true

Response

200 - undefined