Skip to main content
POST
/
create
Submit an event payload for fraud screening
curl --request POST \
  --url https://live.voora.ai/event/create \
  --header 'Content-Type: application/json' \
  --header 'X-CLIENT-API-KEY: <api-key>' \
  --data '
{
  "id": "<string>",
  "eventType": "<string>",
  "eventAmount": 123,
  "eventCurrency": "<string>",
  "cardHolder": "<string>",
  "cardBin": "<string>",
  "cardHash": "<string>",
  "cardLast": "<string>",
  "cardExpiry": "<string>",
  "userIp": "<string>",
  "userEmail": "<string>",
  "userPhoneNumber": "<string>",
  "userFullName": "<string>",
  "userFirstName": "<string>",
  "userLastName": "<string>",
  "userDob": "<string>",
  "userPob": "<string>",
  "userId": "<string>",
  "userName": "<string>",
  "userCreated": "<string>",
  "userCountry": "<string>",
  "userCity": "<string>",
  "userRegion": "<string>",
  "userZip": "<string>",
  "userStreet1": "<string>",
  "userStreet2": "<string>",
  "shippingCountry": "<string>",
  "shippingCity": "<string>",
  "shippingRegion": "<string>",
  "shippingZip": "<string>",
  "shippingStreet1": "<string>",
  "shippingStreet2": "<string>",
  "shippingPhone": "<string>",
  "shippingFullName": "<string>",
  "billingCountry": "<string>",
  "billingCity": "<string>",
  "billingRegion": "<string>",
  "billingZip": "<string>",
  "billingStreet1": "<string>",
  "billingStreet2": "<string>",
  "billingPhone": "<string>",
  "eventDate": "<string>",
  "browserUserAgent": "<string>",
  "items": [
    {
      "itemId": "<string>",
      "itemName": "<string>",
      "itemQuantity": 123,
      "itemPrice": 123,
      "itemCategory": "<string>",
      "itemSeller": "<string>",
      "itemSellerCountry": "<string>"
    }
  ]
}
'
{
  "id": "<string>",
  "eventId": "<string>",
  "actionType": "<string>",
  "totalRiskScore": 123,
  "appliedRulesDetails": [
    {
      "ruleId": "<string>",
      "score": 123,
      "ruleName": "<string>"
    }
  ],
  "denylistMatches": [
    "<string>"
  ],
  "allowlistMatches": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://voora.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-CLIENT-API-KEY
string
header
required

API key required in header: X-CLIENT-API-KEY

Body

id
string | null
eventType
string | null
eventAmount
number<double> | null
eventCurrency
string | null
cardHolder
string | null
cardBin
string | null
cardHash
string | null
cardLast
string | null
cardExpiry
string | null
userIp
string | null
userEmail
string | null
userPhoneNumber
string | null
userFullName
string | null
userFirstName
string | null
userLastName
string | null
userDob
string | null
userPob
string | null
userId
string | null
userName
string | null
userCreated
string | null
userCountry
string | null
userCity
string | null
userRegion
string | null
userZip
string | null
userStreet1
string | null
userStreet2
string | null
shippingCountry
string | null
shippingCity
string | null
shippingRegion
string | null
shippingZip
string | null
shippingStreet1
string | null
shippingStreet2
string | null
shippingPhone
string | null
shippingFullName
string | null
billingCountry
string | null
billingCity
string | null
billingRegion
string | null
billingZip
string | null
billingStreet1
string | null
billingStreet2
string | null
billingPhone
string | null
eventDate
string | null
browserUserAgent
string | null
items
object[] | null

Response

OK

id
string | null

Id provided by customer

eventId
string | null

A unique identifier generated by StrongHold api

actionType
string | null

Event state, which indicates the further action. State can be either APPROVE, REVIEW or DECLINE

totalRiskScore
integer<int32>

A score from 0-100 indicating the likelihood that a event is fraudulent.

appliedRulesDetails
object[] | null
denylistMatches
string[] | null
allowlistMatches
string[] | null