API Reference
Search…
API Reference
v1.7.3
Introduction
Integration
Sandbox and Live
Authentication
Rate Limits
Service Quota
Errors
Pagination
Filtering
Versioning
Core resources
Clients
Addresses
Documents
Live Photos
Live Videos
Checks
Risk Profile
Get a risk profile
Check types
AML Screening Check
Document Check
Identity Check
Enhanced Identity Check
Proof of Address Check
Multi-Bureau Check
Face Authentication Check
Lookups
Company Search
Address Search
Tools
Custom Lists
Static Data
Screening Lists
Supported Documents
Other Resources
Flow (Hosted Solution)
Webhooks
SDK Tokens
Autofill
Reports
Team Members
Audit Logs
Account Info
Powered By
GitBook
Get a risk profile
get
https://api.complycube.com
/v1/clients/:id/riskProfile
Get a risk profile
Example request
cURL
Node.js
Python
PHP
.NET
curl
-X GET https://api.complycube.com/v1/clients/
{
:clientId
}
/riskProfile
\
-H
'Authorization: <YOUR_API_KEY>'
const
{
ComplyCube
}
=
require
(
"@complycube/api"
);
​
const
complycube
=
new
ComplyCube
({
apiKey
:
"<YOUR_API_KEY>"
});
​
const
riskProfile
=
await
complycube
.
riskProfile
.
get
(
"CLIENT_ID"
);
from
complycube
import
ComplyCubeClient
​
cc_api
=
ComplyCubeClient
(
api_key
=
'<YOUR_API_KEY>'
)
​
cc_api
.
riskprofiles
.
get
(
'CLIENT_ID'
)
use
ComplyCube
\
ComplyCubeClient
;
​
$ccapi
=
new
ComplyCubeClient
(
'<YOUR_API_KEY>'
);
​
$profiles
=
$ccapi
->
riskProfiles
()
->
get
(
'CLIENT_ID'
);
using
ComplyCube
.
Net
;
using
ComplyCube
.
Net
.
Resources
.
RiskProfiles
;
​
var
riskProfileApi
=
new
RiskProfileApi
(
new
ComplyCubeClient
(
"<YOUR_API_KEY>"
));
​
var
docChecks
=
await
riskProfileApi
.
GetAsync
(
"CLIENT_ID"
);
​
Previous
Risk Profile
Next - Check types
AML Screening Check
Last modified
9mo ago
Copy link
Outline
get
Get a risk profile
Example request