Skip to main content
POST
/
v1
/
enrichment-providers
/
{provider_uuid}
/
test
Test Enrichment Provider
curl --request POST \
  --url https://api.example.com/v1/enrichment-providers/{provider_uuid}/test \
  --header 'Content-Type: application/json' \
  --data '
{
  "indicator_type": "<string>",
  "indicator_value": "<string>"
}
'
{
  "data": {
    "success": true,
    "provider_name": "<string>",
    "indicator_type": "<string>",
    "indicator_value": "<string>",
    "extracted": {},
    "raw_response": {},
    "error_message": "<string>",
    "duration_ms": 0,
    "steps": [
      {
        "step_name": "<string>",
        "step_index": 123,
        "request_method": "<string>",
        "request_url": "<string>",
        "request_headers": {},
        "indicator_value": "<string>",
        "request_query_params": {},
        "request_body": null,
        "response_status_code": 123,
        "response_headers": {},
        "response_body": null,
        "duration_ms": 0,
        "error": "<string>",
        "skipped": false
      }
    ]
  },
  "meta": {}
}

Path Parameters

provider_uuid
string<uuid>
required

Body

application/json

Request body for POST /v1/enrichment-providers/{uuid}/test.

indicator_type
string
required
indicator_value
string
required

Response

Successful Response

data
EnrichmentProviderTestResponse · object
required

Response body for the test endpoint.

meta
Meta · object