The official Ruby bindings for the latest version (v205) of the Sift API.
- Ruby 2.0.0 or above.
If you want to build the gem from source:
$ gem build sift.gemspec
Alternatively, you can install the gem from rubygems.org:
gem install sift
require "sift"
Sift.api_key = '<your_api_key_here>'
Sift.account_id = '<your_account_id_here>'
client = Sift::Client.new()
##### OR
client = Sift::Client.new(api_key: '<your_api_key_here>', account_id: '<your_account_id_here>')
Send event to Sift. To learn more about the Events API visit our developer docs.
Optional Params
return_score
::true
or:false
return_action
::true
or:false
return_workflow_status
::true
or:false
return_route_info
::true
or:false
force_workflow_run
::true
or:false
include_score_percentiles
::true
or:false
warnings
::true
or:false
abuse_types
:["payment_abuse", "content_abuse", "content_abuse", "account_abuse", "legacy", "account_takeover"]
Example:
event = "$transaction"
user_id = "23056" # User ID's may only contain a-z, A-Z, 0-9, =, ., -, _, +, @, :, &, ^, %, !, $
properties = {
"$user_id" => user_id,
"$user_email" => "buyer@gmail.com",
"$seller_user_id" => "2371",
"seller_user_email" => "seller@gmail.com",
"$transaction_id" => "573050",
"$payment_method" => {
"$payment_type" => "$credit_card",
"$payment_gateway" => "$braintree",
"$card_bin" => "542486",
"$card_last4" => "4444"
},
"$currency_code" => "USD",
"$amount" => 15230000,
}
response = client.track(event, properties)
response.ok? # returns true or false
response.body # API response body
response.http_status_code # HTTP response code, 200 is ok.
response.api_status # status field in the return body, Link to Error Codes
response.api_error_message # Error message associated with status Error Code
# Request a score for the user with user_id 23056
response = client.score(user_id)
To learn more about the decisions endpoint visit our developer docs.
Get a list of your decisions.
Optional Params
entity_type
::user
or:order
or:session
or:content
abuse_types
:["payment_abuse", "content_abuse", "content_abuse", "account_abuse", "legacy", "account_takeover"]
Returns
A Response
object
Example:
# fetch a list of all your decisions
response = client.decisions({
entity_type: :user,
abuse_types: ["payment_abuse", "content_abuse"]
})
# Check that response is okay.
unless response.ok?
raise "Unable to fetch decisions #{response.api_error_message} " +
"#{response.api_error_description}"
end
# find a decisions with the id "block_bad_user"
user_decision = response.body["data"].find do |decision|
decision["id"] == "block_bad_user"
end
# Get the next page
if response.body["has_more"]
client.decisions(response.body)
end
Applies a decision to an entity. Visit our developer docs for more information.
Required Params:
decision_id
,source
,user_id
Other Params
order_id
: when applying a decision to an order, you must pass in theorder_id
session_id
: when applying a decision to a session, you must pass in thesession_id
analyst
: whensource
is set tomanual_review
, this field is required
Returns
Response
object.
Examples:
# apply decision to a user
response = client.apply_decision({
decision_id: "block_bad_user",
source: "manual_review",
analyst: "bob@your_company.com",
user_id: "john@example.com"
})
# apply decision to "john@example.com"'s order
response = client.apply_decision({
decision_id: "block_bad_order",
source: "manual_review",
analyst: "bob@your_company.com",
user_id: "john@example.com",
order_id: "ORDER_1234"
})
# apply decision to "john@example.com"'s session
response = client.apply_decision({
decision_id: "block_bad_session",
source: "manual_review",
analyst: "bob@your_company.com",
user_id: "john@example.com",
session_id: "SESSION_ID_1234"
})
# apply decision to "john@example.com"'s content
response = client.apply_decision({
decision_id: "block_bad_session",
source: "manual_review",
analyst: "bob@your_company.com",
user_id: "john@example.com",
content_id: "CONTENT_ID_1234"
})
# Make sure you handle the response after applying a decision:
if response.ok?
# do stuff
else
# Error message
response.api_error_message
# Summary of the error
response.api_error_description
# hash of errors:
# key: field in question
# value: description of the issue
response.api_error_issues
end
# Label the user with user_id 23056 as Bad with all optional fields
response = client.label(user_id, {
"$is_bad" => true,
"$abuse_type" => "payment_abuse",
"$description" => "Chargeback issued",
"$source" => "Manual Review",
"$analyst" => "analyst.name@your_domain.com"
})
# Get the status of a workflow run
response = client.get_workflow_status('my_run_id')
# Get the latest decisions for a user
response = client.get_user_decisions('example_user_id')
# Get the latest decisions for an order
response = client.get_order_decisions('example_order_id')
# Get the latest decisions for a session
response = client.get_session_decisions('example_user_id', 'example_session_id')
# Get the latest decisions for an content
response = client.get_content_decisions('example_user_id', 'example_order_id')
To learn more about the decisions endpoint visit our developer docs.
# On-board a PSP merchant summary to Sift Platform.
# Sample psp_merchant_profile
properties = {
"id": "merchant_id_01000",
"name": "Wonderful Payments Inc.",
"description": "Wonderful Payments payment provider.",
"address": {
"name": "Alany",
"address_1": "Big Payment blvd, 22",
"address_2": "apt, 8",
"city": "New Orleans",
"region": "NA",
"country": "US",
"zipcode": "76830",
"phone": "0394888320"
},
"category": "1002",
"service_level": "Platinum",
"status": "active",
"risk_profile": {
"level": "low",
"score": 10
}
}
response = client.create_psp_merchant_profile(properties)
# Update a merchant summary to reflect changes in the status or service level or address etc.
properties = {
"id": "merchant_id_01000",
"name": "Wonderful Payments Inc.",
"description": "Wonderful Payments payment provider.",
"address": {
"name": "Alany",
"address_1": "Big Payment blvd, 22",
"address_2": "apt, 8",
"city": "New Orleans",
"region": "NA",
"country": "US",
"zipcode": "76830",
"phone": "0394888320"
},
"category": "1002",
"service_level": "Platinum",
"status": "active",
"risk_profile": {
"level": "low",
"score": 10
}
}
response = client.update_psp_merchant_profile('merchant_id', properties)
# Get the existing PSP merchant summaries.
response = client.get_a_psp_merchant_profile('merchant_id')
# Get all PSP merchant summaries
response = client.get_psp_merchant_profiles()
# Get PSP merchant summaries paginated
response = client.get_psp_merchant_profiles('batch_size', 'batch_token')
All requests to our apis will return a Response
instance.
ok?
returnstrue
when the response is a200
-299
,false
if it isn'tbody
returns a hash representation of the json body returned.api_error_message
returns a string describing the api error code.api_error_description
a summary of the error that occured.api_error_issues
a hash describing the items the error occured. Thekey
is the item and thevalue
is the description of the error.
Building and publishing the gem is captured by the following steps:
$ gem build sift.gemspec
$ gem push sift-<current version>.gem
$ bundle
$ rake -T
$ rake build
$ rake install
$ rake release
To run the various tests use the rake command as follows:
$ rake spec
For testing the app with real calls it is possible to run the integration testing app, it makes calls to almost all our public endpoints to make sure the library integrates well. At the moment, the app is run on every merge to master
- Add env variable
ACCOUNT_ID
with the valid account id - Add env variable
API_KEY
with the valid Api Key associated from the account - Run the following under the project root folder
# Install the budle locally
bundle check || bundle install
# Run the app
bundle exec ruby test_integration_app/main.rb