Skip to main content
Version: 1.1

List a Rule by ID

GET https://api.fraudio.com/v1/rules/:rule_id

Endpoint Overview

The "List Rule by ID" endpoint in the Rules Management API allows you to fetch a specific fraud detection rule using its unique identifier. This provides a detailed view of the rule, helping you understand its role and functionality within your organization's fraud prevention setup.

tip

Reach out to our Support Team if you have questions or require further details about this endpoint. We're here to assist.

Request Parameters

Path Parameters

The endpoint requires the following path parameter:

  • rule_id: The unique identifier (UUID) of the rule you wish to retrieve.

Example Request With Path Parameter

GET https://api.fraudio.com/v1/rules/123e4567-e89b-12d3-a456-426614174000

Response Parameters

Status CodeStatus MessageDescriptionSchema
200OKStandard response for successful HTTP requests when fetching a specific rule.200 OK - Rule list by ID response
404Not FoundResponse when the specified rule ID does not exist.Problem response
4xx, 500, 501, 502, 503, 504errorVarious error messages for unsuccessful HTTP requests.Problem response

Code Samples

curl -X GET 'https://api.fraudio.com/v1/rules/YOUR_RULE_ID_HERE' \
-H 'Content-Type: application/json' \
-H "authorisation: Bearer $ACCESS_TOKEN"