API Reference
v1.7.3
Search
K
Comment on page

Get a check

get
https://api.complycube.com
/v1/checks/:id
Get a check
Retrieves an existing check.
Parameters
Path
id*
string
The ID of the check.
Header
Authentication*
string
The live or sandbox API key.
Responses
200
Check successfully retrieved.
404
Could not find a check matching provided id.

Example request

cURL
Node.js
Python
PHP
.NET
curl -X GET https://api.complycube.com/v1/checks/{:checkId} \
-H 'Authorization: <YOUR_API_KEY>'
const { ComplyCube } = require("@complycube/api");
const complycube = new ComplyCube({ apiKey: "<YOUR_API_KEY>" });
const check = await complycube.check.get("CHECK_ID");
from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR_API_KEY>')
check = cc_api.checks.get('CHECK_ID')
use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR_API_KEY>');
$check = $ccapi->checks()->get('CHECK_ID');
using ComplyCube.Net;
using ComplyCube.Net.Resources.Checks;
var checkApi = new CheckApi(new ComplyCubeClient("<YOUR_API_KEY>"));
var check = await checkApi.GetAsync("CHECK_ID");