Choose a server to use:
object | object | required | |
input | object | required | |
bucket | string | required | |
files | array[string] | required | |
id_type | string | required | |
hash_type | string | required |
curl --request POST \
--url /api/v1.0//match \
--data '{
"input": {
"bucket": "dot-sandbox-test",
"files": [
"test/ids.csv"
],
"id_type": "email",
"hash_type": "sha256"
}
}'
object | object | ||
active | boolean | Feature a flag that the feature endpoint is interactive | optional |
response | object | optional | |
created | integer | Unix Timestamp | optional |
job_id | string | unique id for the request | optional |
xxxxxxxxxx
{
"active": "{boolean}",
"response": {
"created": "{integer}",
"job_id": "{string}"
}
}
object | object | ||
input | object | optional | |
bucket | string | required | |
files | array[string] | required | |
id_type | string | required | |
hash_type | string | required | |
query | object | optional | |
signals | array[string] | required | |
limit | integer | optional | |
include_all | boolean | required | |
delimiter | string | required |
xxxxxxxxxx
curl --request POST \
--url /api/v1.0//score \
--data '{
"input": {
"bucket": "dot-sandbox-test",
"files": [
"test/ids.csv"
],
"id_type": "email",
"hash_type": "sha256"
},
"query": {
"signals": [
"UUS_TVS_1",
"UUC_BL_1",
"UUC_VPN_1"
],
"limit": "{integer}",
"include_all": true,
"delimiter": ","
}
}'
object | object | ||
active | boolean | feature flag indicating that the feature endpoint is interactive | optional |
response | object | optional | |
created | integer | unix timestamp of file upload time in seconds | optional |
job_id | string | unique id for the request | optional |
xxxxxxxxxx
{
"active": "{boolean}",
"response": {
"created": "{integer}",
"job_id": "{string}"
}
}