Rulesets - developer preview
Create and manage resolution rulesets and their child rules.
Base URL: https://api.chargebackstop.com/v1/rulesets/
Authentication: Bearer token via API key.
Required abilities:
rulesets:readfor GET endpointsrulesets:writefor POST, PATCH, and DELETE endpoints
Access scope model:
Organisation-level keys can access rulesets for their own organisation only.
Admin partner-group keys can access rulesets across all organisations for their partner.
Non-admin partner-group keys can access rulesets only for organisations assigned to their group.
Rule types
A rule is defined by its type and a parameters object whose shape depends on the type. Each ruleset can contain at most one rule of each type. The same rule types apply to embedded rules on POST /v1/rulesets and to the nested POST / PATCH rule endpoints.
AMOUNT
Matches the transaction amount against a threshold.
operator
string
GREATER_THAN, GREATER_THAN_OR_EQUAL, LESS_THAN, LESS_THAN_OR_EQUAL, EQUAL, or NOT_EQUAL
currency_code
string
Three-letter currency code. Must be USD.
amount_in_cents
integer
Non-negative amount in cents.
Example parameters:
DESCRIPTOR
Matches the transaction's statement descriptor against one or more entries.
descriptors
array[object]
One or more descriptor entries
Each descriptor entry:
value
string
Descriptor string to match against.
match_type
string
STARTS_WITH or EXACT_MATCH
Example parameters:
POST /v1/rulesets - create ruleset
Creates one ruleset and optionally creates child rules within the same request.
API level: Organisation-level and partner-level
Authentication: rulesets:write
Request body
organisation_id
string
Organisation ID
enrolment_ids
array[string]
One or more enrolment IDs
outcome
string
REFUND, CANCEL, REFUND_AND_CANCEL, or ACCEPT_DISPUTE
join_operator
string
AND or OR
Example 1 request
Example 1 response
GET /v1/rulesets - list rulesets
Returns a paginated list of accessible rulesets.
API level: Organisation-level and partner-level
Authentication: rulesets:read
Query parameters
organisation_id
string
Filter by organisation ID
sort
string
-created_at (default), created_at, -updated_at, or updated_at
limit
integer
Number of results per page
offset
integer
Number of results to skip
Example 2 request
Example 2 response
GET /v1/rulesets/{ruleset_id} - get ruleset by ID
Returns one accessible ruleset.
API level: Organisation-level and partner-level
Authentication: rulesets:read
Example 3 request
Example 3 response
PATCH /v1/rulesets/{ruleset_id} - update ruleset
Updates one accessible ruleset.
API level: Organisation-level and partner-level
Authentication: rulesets:write
Request body
enrolment_ids
array[string]
Optional. One or more enrolment IDs
outcome
string
Optional. REFUND, CANCEL, REFUND_AND_CANCEL, or ACCEPT_DISPUTE
join_operator
string
Optional. AND or OR
Example 4 request
Example 4 response
DELETE /v1/rulesets/{ruleset_id} - delete ruleset
Deletes one accessible ruleset and its child rules.
API level: Organisation-level and partner-level
Authentication: rulesets:write
Example 5 request
Example 5 response
POST /v1/rulesets/{ruleset_id}/rules - add rule
Adds one rule to an existing accessible ruleset.
API level: Organisation-level and partner-level
Authentication: rulesets:write
Request body
Example 6 request
Example 6 response
GET /v1/rulesets/{ruleset_id}/rules/{rule_id} - get rule by ID
Returns one accessible rule from an accessible ruleset.
API level: Organisation-level and partner-level
Authentication: rulesets:read
Example 7 request
Example 7 response
PATCH /v1/rulesets/{ruleset_id}/rules/{rule_id} - update rule
Updates one accessible rule within an accessible ruleset.
API level: Organisation-level and partner-level
Authentication: rulesets:write
Request body
Example 8 request
Example 8 response
DELETE /v1/rulesets/{ruleset_id}/rules/{rule_id} - delete rule
Deletes one accessible rule from an accessible ruleset.
API level: Organisation-level and partner-level
Authentication: rulesets:write
Example 9 request
Example 9 response
Error examples
Example 10: forbidden
Example 11: not found
Example 12: invalid currency
Example 13: rules not allowed on ruleset update
Last updated
Was this helpful?