Background Check - xpand-io/api-docs GitHub Wiki

POST /api/v1/background_check_reports/VENDOR_NAME

Allows background check vendors to push Xpand a list of updated Report IDs when there is an update in their systems. VENDOR_NAME, USERNAME, and PASSWORD will be provided by Xpand and will be unique to the Background Check provider.

Sample Payload

{
 "data": {
   "ReportIDs": [266,267]
 }
}

Sample Request

curl \
  --verbose \
  --request POST \
  --user USERNAME:PASSWORD \
  --header "Content-Type: application/json" \
  --header "Accept: application/json" \
  --data '{ "data": { "ReportIDs": [266,267] } }' \
  https://domain-staging.xpand.io/api/v1/background_check_reports/VENDOR_NAME