- Home
- All APIs
- Access Worldpay
- API reference
- FraudSight
FraudSight
FraudSight root resource, returns links to available actions.
Methods
GET
Retrieve links to next available actions.
Responses
Response schema
Copied!
{
"type": "object",
"properties": {
"_links": {
"type": "object",
"format": "hal+json"
}
},
"required": [
"_links"
]
}
{ "type": "object", "properties": { "_links": { "type": "object", "format": "hal+json" } }, "required": [ "_links" ] }
Examples
Link relationship
fraudsight:assess
risk assessment request
Retrieve the fraudsight top-level collection resource.
GEThttps://try.access.worldpay.com/fraudsight
Copied!
{
"Authorization": "Basic auth",
"Content-Type": "application/vnd.worldpay.fraudsight-v1.hal+json"
}
{ "Authorization": "Basic auth", "Content-Type": "application/vnd.worldpay.fraudsight-v1.hal+json" }
200
Copied!
{
"_links": {
"resourceTree": {
"href": "https://try.access.worldpay.com/fraudsight/resourceTree"
},
"fraudsight:assess": {
"href": "https://try.access.worldpay.com/fraudsight/assessment"
},
"curies": [
{
"href": "https://try.access.worldpay.com/rels/fraudsight/{rel}",
"templated": true,
"name": "fraudsight"
}
]
}
}
{ "_links": { "resourceTree": { "href": "https://try.access.worldpay.com/fraudsight/resourceTree" }, "fraudsight:assess": { "href": "https://try.access.worldpay.com/fraudsight/assessment" }, "curies": [ { "href": "https://try.access.worldpay.com/rels/fraudsight/{rel}", "templated": true, "name": "fraudsight" } ] } }