Group response
curl -i -X GET \
'https://developers.nvsep.org/_mock/apis/api/cfs/v1/exclusions?after=string&before=string&hideOwn=true&limit=0&sinceId=string&totalCount=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Group response
Collection of exclusions
{ "entries": [ { … } ], "meta": { "after": "eyJpZCI6MjAsImdyb3VwX2lkIjoxMCwicmVhc29uIjoiUG9saWN5IFZpb2xhdGlvbiJ9", "before": null, "limit": 25, "totalCount": 1 } }
CfsExclusionCreateInput
Player
curl -i -X POST \
https://developers.nvsep.org/_mock/apis/api/cfs/v1/exclusions \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"endDate": "2025-12-31",
"player": {
"hashes": [
{
"createdAt": "2024-01-01T10:00:00Z",
"hash1": "hash_value_1",
"hash2": "hash_value_2",
"hash3": "hash_value_3"
}
]
},
"reference": "EXC-0001",
"startDate": "2025-01-01"
}'
CfsExclusion
Timestamp of when the exclusion was created
Unique identifier for the CFS exclusion
Player
{ "createdAt": "2023-01-01T12:00:00Z", "createdByOrg": { "id": "473bd688-ad6b-42dc-bbe8-8342537483cc", "name": "IdPair, Inc." }, "endDate": "2023-12-31", "id": "e0df5fa5-72b9-4061-b1fd-b0bc82209a41", "player": { "hashes": [ … ] }, "reference": "REF123", "startDate": "2023-01-01" }
CfsInquiryCreateInput
Collection of hashes
curl -i -X POST \
https://developers.nvsep.org/_mock/apis/api/cfs/v1/inquiries \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"player": {
"hashes": [
{
"hash1": "97f1b7e9-58c5-4239-9436-760b8a2845de",
"hash2": "3308fde1-e712-4bad-8fa5-1a9ef0cdd0e9",
"hash3": "9587671e-3a6e-439c-bf13-faa9ca148059"
}
]
}
}'
CfsInquiry
Status indicating whether an exclusion is active or not
Collection of exclusions
Timestamp of when the exclusion was created
Unique identifier for the CFS exclusion
Player
{ "exclusionStatus": "NO_EXCLUSION_ACTIVE", "exclusions": [], "id": "e0df5fa5-72b9-4061-b1fd-b0bc82209a41" }