Returns a list of available fraud categories that can be reported via POST /feedback/fraud-reports.
This pre-release API is currently active for select few customers. Requests to the API URL will not return data if you are not part of the trial. We will expand availability in near future to all customers.
API key
Full request path signed with the shared secret key
Successful Response
{
"categories": [
{
"category": "document_is_manipulated",
"description": "Document is manipulated"
},
{
"category": "document_shown_from_screen",
"description": "Document is shown from screen"
},
{
"category": "document_is_printed_copy",
"description": "Document is a printed out copy"
},
{
"category": "selfie_shown_from_screen",
"description": "Selfie is shown from screen"
},
{
"category": "selfie_is_manipulated",
"description": "Selfie is manipulated"
},
{
"category": "selfie_document_portrait_mismatch",
"description": "Selfie does not match document portrait"
},
{
"category": "injected_media",
"description": "Media is injected"
}
]
}
Response model containing the list of available fraud categories.
List of available fraud categories.
Machine-readable code for the fraud category.
Human-readable description of the category.
Unauthorized. Possible reasons: invalid API key or signature.
{
"code": "1803",
"message": "Integration with the API key '6ee9e344-20a6-439d-bf21-b6610db63ad6' was not found."
}
Generic error response structure.
A machine-readable error code indicating the type of error.
A human-readable message explaining the error.
Too Many Requests. Rate limit exceeded.
{
"code": "RATE_LIMIT_EXCEEDED",
"message": "Limit exceeded: 1000 per minute"
}
Generic error response structure.
A machine-readable error code indicating the type of error.
A human-readable message explaining the error.
Internal Server Error. An unexpected error occurred.
{
"code": "INTERNAL_SERVER_ERROR",
"message": "An unexpected error occurred."
}
Generic error response structure.
A machine-readable error code indicating the type of error.
A human-readable message explaining the error.